远程连接mysql8.0,Error No.2058 Plugin caching_sha2_password could not be loaded
Posted Goxcheer
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了远程连接mysql8.0,Error No.2058 Plugin caching_sha2_password could not be loaded相关的知识,希望对你有一定的参考价值。
通过本地去连接远程的mysql时报错,原因时mysql8.0的加密方法变了。
mysql8.0默认采用caching_sha2_password的加密方式
第三方客户端基本都不支持这种加密方式,只有自带的命令行支持
所以需要修改加密方式。
首先进入mysql命令行
[root@localhost ~]# mysql -u root -p
Enter password:
第一步:修改加密方式
ALTER USER\'root\'@\'localhost\' IDENTIFIED BY \'Qigaoxiang2018@\' PASSWORD EXPIRE NEVER;
第二步:重新修改密码
ALTER USER\'root\'@\'%\' IDENTIFIED WITH mysql_native_password BY \'Qigaoxiang2018@\';
第三步:刷新(不做可能无法生效)
FLUSH PRIVILEGES;
之后可以成功连接。
以上是关于远程连接mysql8.0,Error No.2058 Plugin caching_sha2_password could not be loaded的主要内容,如果未能解决你的问题,请参考以下文章