docker之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来。

解决方案:

1.进入mysql容器

docker exec -it mysql /bin/bash

2.进入mysql

mysql -uroot -p密码

docker之mysql连接ERROR 2059 (HY000): Authentication plugin 'caching_sha2_password' cannot be loaded_第1张图片

3.修改密码

ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY 'root';

结果:

docker之mysql连接ERROR 2059 (HY000): Authentication plugin 'caching_sha2_password' cannot be loaded_第2张图片

你可能感兴趣的:(Other)