其他分享
首页 > 其他分享> > 报错:Unable to load authentication plugin ‘caching_sha2_password‘.

报错:Unable to load authentication plugin ‘caching_sha2_password‘.

作者:互联网

原文地址:https://blog.csdn.net/ZHY_ERIC/article/details/123615953

这个是因为,mysql8之前的版本使用的密码加密规则是mysql_native_password,但是在mysql8则是caching_sha2_password,所以需要修改密码加密规则。

1、进去mysql 8.0 command line client

2、输入use mysqlselect user,host,plugin,authentication_string from user;

        可以看到如下的界面,即用户的密码加密规则

        alter user 'root' @'localhost' identified with mysql_native_password by 'admin'; 

标签:load,sha2,加密,mysql8,报错,user,mysql,password,native
来源: https://www.cnblogs.com/eyesfree/p/16527007.html