数据库
首页 > 数据库> > 连接MySQL错误“plugin caching_sha2_password could not be loaded”的解决办法

连接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 root@localhost IDENTIFIED WITH mysql_native_password BY '123456'; //123456是密码
FLUSH PRIVILEGES

 

标签:sha2,插件,plugin,could,mysql,MySQL,caching,password
来源: https://www.cnblogs.com/live41/p/13833337.html