MySQL Authentication plugin 'caching_sha2_password' cannot be loaded

Posted 为什么人的眼睛有黑白两色

tags:

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

很多用户在使用Navicat Premium 12连接mysql数据库时会出现Authentication plugin ‘caching_sha2_password‘ cannot be loaded的错误,解决方法如下

1. 管理员权限运行命令提示符,登陆MySQL

   mysql -u root -p

   password                                                                         #登入mysql

 

2. 修改账户密码加密规则并更新用户密码

   ALTER USER ‘root‘@‘localhost‘ IDENTIFIED BY ‘password‘ PASSWORD EXPIRE NEVER;   #修改加密规则 

   ALTER USER ‘root‘@‘localhost‘ IDENTIFIED WITH mysql_native_password BY ‘password‘;   #更新一下用户的密码 

 

3. 刷新权限并重置密码

   FLUSH PRIVILEGES;   #刷新权限 

 

再重置下密码:alter user ‘root‘@‘localhost‘ identified by ‘111111‘;

 

现在再次打开Navicat Premium 12连接MySQL问题数据库就会发现可以连接成功了
---------------------
作者:_vinci
来源:CSDN
原文:https://blog.csdn.net/u011182575/article/details/80821418

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

MySQL身份验证——Pluggable Authentication

NativeForMySQL 连接MySQL8 提示:1251- Client does not support authentication protocol

Shiro系列之Shiro+Mysql实现用户认证(Authentication)

MySQL Authentication Failed问题分析与解决对策

mysql错误:this authentication plugin is not supported

Navicat连接Docker中的mysql报错:client does not support authentication