mysql Public Key Retrieval is not allowed
时间: 2024-02-01 10:11:15 浏览: 153
记录无法安装mysql-Invalid GPG Key from file:/etc/pki/rpm-gpg/RPM-GPG-KEY-mysql的解决办法
在连接MySQL时,如果出现"Public Key Retrieval is not allowed"的错误,可以尝试以下两种解决方法:
1. 在URL地址后面添加参数"allowPublicKeyRetrieval=true"。例如,在IDEA中连接MySQL时,可以在配置的URL地址后面添加"&allowPublicKeyRetrieval=true"。这样可以允许公钥检索。
2. 使用数据库管理工具,如DBeaver,在连接设置中找到驱动属性,将"allowPublicKeyRetrieval"的值从默认的false改为true。这样也可以开启公钥检索。
请注意,以上两种方法都是为了允许公钥检索,以解决"Public Key Retrieval is not allowed"的错误。
阅读全文