Navicat连接MySQL发生错误:1251-Client does not support authentication protocol requested by server

解决方法:

 

1、打开cmd命令行窗口,进入到MySQL的bin目录下。

执行命令:

mysql -u root -p

 Navicat连接MySQL发生错误:1251-Client does not support authentication protocol requested by server

2、执行下面的命令:

ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '123456';

 Navicat连接MySQL发生错误:1251-Client does not support authentication protocol requested by server

 

3、刷新权限,执行命令:

FLUSH PRIVILEGES;

4、连接成功:

 Navicat连接MySQL发生错误:1251-Client does not support authentication protocol requested by server

相关文章: