Mysql_新建连接报错:Client does not support authentication protocol requested by server ;consider upgrading

Posted 翻滚的小强

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mysql_新建连接报错:Client does not support authentication protocol requested by server ;consider upgrading相关的知识,希望对你有一定的参考价值。

mysql_新建连接报错:Client does not support authentication protocol requested by server ;consider upgrading Mysql client

 

 

原因:

上网搜索解决方案,网上说出现这种情况的原因是:mysql8 之前的版本中加密规则是mysql_native_password,而在mysql8之后,加密规则是caching_sha2_password, 

 

解决方法:

1、进入Mysql服务端:

    输入mysql -u root -p,输入密码进入

    

 2、继续输入:

ALTER USER \'root\'@\'127.0.0.1\' IDENTIFIED BY \'password\' PASSWORD EXPIRE NEVER; #修改加密规则 (这行我没有写,不过貌似也可以)

ALTER USER \'root\'@\'127.0.0.1\' IDENTIFIED WITH mysql_native_password BY \'你自己的密码\'; #更新一下用户的密码 

FLUSH PRIVILEGES; #刷新权限

 

以上是关于Mysql_新建连接报错:Client does not support authentication protocol requested by server ;consider upgrading的主要内容,如果未能解决你的问题,请参考以下文章

Mysql8.0升级后,Navicat连接报错caching_sha2_password 问题

安装mysql 8.0版本时,使用front连接报1251错误或者navicat 连接报错2059解决方案

MySQL连接报错

Navicat Premium 连接报错:Authentication plugin 'caching_sha2_password' cannot be loaded

12月12 mysql连接报错

关于数据库连接报错:Unable to load authentication plugin 'caching_sha2_password'.