连接MySQL错误“plugin caching_sha2_password could not be loaded”的解决办法

Posted maluscalc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了连接MySQL错误“plugin caching_sha2_password could not be loaded”的解决办法相关的知识,希望对你有一定的参考价值。

mysql新版默认使用caching_sha2_password作为身份验证插件,而旧版是使用mysql_native_password。
当连接MySQL时报错“plugin caching_sha2_password could not be loaded”时,可换回旧版插件。

mysql -hlocalhost -uroot -p123456 //进入数据库
use mysql;
ALTER USER [email protected] IDENTIFIED WITH mysql_native_password BY ‘123456‘; //123456是密码
FLUSH PRIVILEGES

 

以上是关于连接MySQL错误“plugin caching_sha2_password could not be loaded”的解决办法的主要内容,如果未能解决你的问题,请参考以下文章

PHP mysql 连接错误

谁用过SSL连接mysql,2026错误怎么解决

怎样解决mysql连接过多的错误?

怎么解决mysql不允许远程连接的错误

求助PHP和MySQL测试连接错误

php在连接mysql时为啥会包这样的错误?