欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Mysql连接问题

程序员文章站 2022-03-11 11:05:48
...

如图:

Mysql连接问题

报错信息:2059 - Authentication plugin ‘caching_sha2_password’ cannot be loaded: dlopen(…/Frameworks/caching_sha2_password.so, 2): image not found

解决方案:
将 MySQL 8.0 的身份认证插件改回为 mysql_native_password

ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '这里填写你的新密码';


再进行权限刷新:

FLUSH PRIVILEGES;