EROR 4058 (HY000) : factor authenti cati on method does not match against authentication policy
ERROR 4058 (HY000): 1 factor authentication method does not match against authentication policy. Please refer @@authentication_policy system variable.
·
1.问题
在 MySQL 8.0.27 中由 authentication_policy 来管理用户的身份认证:authentication_policy=caching_sha2_password,
2.解决方案
修改配置文件my.ini,将authentication_policy=caching_sha2_password, 改为:authentication_policy=*, 表示支持任意加密方式。修改完后,重启mysql服务。
SELECT user,authentication_string,plugin,host FROM mysql.user;
ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY 'root';
ALTER USER '你自己的用户名就是上面查出来的user'@'你自己的host就是你上面查出来的host' IDENTIFIED WITH mysql_native_password BY 'root';
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
已为社区贡献2条内容
所有评论(0)