ERROR 2059 (HY000): Authentication plugin 'caching_sha2_password' cannot be loaded
作者:互联网
场景
Docker中部署Mysql8数据库:
https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/120255887
使用Docker部署Mysql8的服务器之后,使用本地的mysql5.6下的mysqldump进行sql备份时提示:
ERROR 2059 (HY000): Authentication plugin 'caching_sha2_password' cannot be loaded
注:
博客:
https://blog.csdn.net/badao_liumang_qizhi
关注公众号
霸道的程序猿
获取编程相关电子书、教程推送与免费下载。
实现
1、进入容器内部
docker exec -it mysql8 /bin/bash
2、连接Mysql
mysql -uroot -p123456
3、修改密码
ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY '123456';
4、查看效果
标签:sha2,plugin,2059,HY000,blog,Authentication,csdn,loaded,password 来源: https://www.cnblogs.com/badaoliumangqizhi/p/15316685.html