MySql错误 1251 - Client does not support authentication protocol requested by server 解决方案

错误:1251 - Client does not support authentication protocol requested by server; consider upgrading MySQL client.

再次安装MySQL后,使用 Navicat 或者 MySQL yog都会出现下面这个异常。

MySql错误 1251 - Client does not support authentication protocol requested by server 解决方案_第1张图片
异常截图

其实这个是一个简单的权限与安全问题。只需要在 MySQL Shell 中输入两行简单的命令就可以解决问题。

管理员运行 CMD 窗口( 按win键 --> Windows系统 --> 命令提示符(右键) --> 更多 --> 以管理员身份运行 )

MySql错误 1251 - Client does not support authentication protocol requested by server 解决方案_第2张图片

通过 cmd 命令进入 mysql 的安装目录(笔者使用的 MySQL 是8.0.12版本的,mysql server安装的默认路径为:C:\Program Files\MySQL\MySQL Server 8.0\bin)

MySql错误 1251 - Client does not support authentication protocol requested by server 解决方案_第3张图片
进入安装路径

接下来,把下面的两条指令逐条复制粘贴到控制台就可以了 ( '123456'为你的数据库登录密码。 )。

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

 flush privileges;

再次尝试重新连接,出现连接成功即可(测试使用Navicat for mysql)

MySql错误 1251 - Client does not support authentication protocol requested by server 解决方案_第4张图片
连接成功

接下来,可以对数据库进行操作了。

你可能感兴趣的:(MySql错误 1251 - Client does not support authentication protocol requested by server 解决方案)