问题描述
使用 navicat 连接本地mysql服务的时候报错:
2059 - Authentication plugin ‘caching_sha2_password’ cannot be loaded: dlopen(…/Frameworks/caching_sha2_password.so, 2): image not found
截图:

解决
终端登录 mysql,执行下面的命令:
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '你的密码';
参考
https://www.cnblogs.com/vinzen/p/10066648.html