MySQL连接ERROR 2059 (HY000): Authentication plugin 'caching_sha2_password' cannot be loaded
我在使用navicat 进行MySQL管理是出现了。2059 - authentication plugin 'caching_sha2_password' -navicat连接异常。这个错误。
这个错误的原因是由于MySQL8.0之后的加密规则为caching_sha2_password.而在此之前的加密规则为mysql_native_password。
可以将加密规则改成mysql_native_password来
ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY 'root';(此例密码为root)