mac pro 使用navicat连接mysql遇到的问题

错误如下:Authentication plugin ‘caching_sha2_password’ cannot be loaded: dlopen(/usr/local/mysql/lib/plugin/caching_sha2_password.so, 2): image not found
这是 MySQL 的问题,不是客户端问题,
所以不管是用 Navicat Premium 还是 Sequel Pro 连接 MySQL,会碰到一样的错误。

解决办法:进入mysql命令行之后:
ALTER USER ‘root’@‘localhost’ IDENTIFIED WITH mysql_native_password BY ‘xxx’;
Where xxx is your current password.

发布了32 篇原创文章 · 获赞 0 · 访问量 3457

猜你喜欢

转载自blog.csdn.net/qq_43213352/article/details/100551880