首页 > 其他分享 >Public Key Retrieval is not allowed

Public Key Retrieval is not allowed

时间:2022-08-29 11:23:34浏览次数:51  
标签:allowed Public Key mysql password Retrieval

运行jar程序报错

Public Key Retrieval is not allowed

 

1.修改程序配置文件中的连接数据库的url,加上allowPublicKeyRetrieval=true参数,失败

2.修改default_authentication_plugin设置,在my.cnf中增加

[mysqld]

default_authentication_plugin=mysql_native_password

然后mysql命令行执行ALTER USER 'username'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password';

最后在程序配置文件中的连接数据库的url中添加时区参数serverTimezone=Asia/Shanghai ,成功

标签:allowed,Public,Key,mysql,password,Retrieval
From: https://www.cnblogs.com/leihongnu/p/16635272.html

相关文章