Authentication plugin ‘caching_sha2_password‘ cannot be loaded

Posted 旺仔哥

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Authentication plugin ‘caching_sha2_password‘ cannot be loaded相关的知识,希望对你有一定的参考价值。

解决mysql for docker容器报错:Authentication plugin 'caching_sha2_password' cannot be loaded

为图方便,懒得在mac上安装mysql了,一个是管理不方便,第二个是为了方便多机器同步开发环境。就使用docker安装了。

拉取mysql镜像
docker pull mysql

运行mysql实例
docker run --name mysql -p 12345:3306 -e MYSQL_ROOT_PASSWORD=root -d mysql:latest

就是这么两步,一切就是这么美好:)

结果一连上去,就发现报错了Authentication plugin 'caching_sha2_password' cannot be loaded

Google了一下,找到解决方案:

进入容器
docker exec -it mysql bash

然后以root身份登录mysql
mysql --user=root --password

输入root的密码(默认为'root')最后运行:
ALTER USER 'root' IDENTIFIED WITH mysql_native_password BY 'password';

以上是关于Authentication plugin ‘caching_sha2_password‘ cannot be loaded的主要内容,如果未能解决你的问题,请参考以下文章

mysql错误:this authentication plugin is not supported

authentication plugin caching_sha2

grafana "this authentication plugin is not supported"

java.sql.SQLException: Unable to load authentication plugin 'caching_sha2_password'.

mysql8.0 Authentication plugin 'caching_sha2_password' cannot be loaded

Unable to load authentication plugin ‘caching_sha2_password‘