Navicat连接MySQL出错:1251 - Client does not support authentication protocol requested by server……

1251-Client does not support authentication protocol requested by server_游海东的技术专栏-CSDN博客
Navicat连接不上MySQL8.0问题的解决方法。
终于对了。差点就要去下载低版本的MySQL了(win7嗐)。
cmd命令行:
(1)cd C:\Program Files\MySQL\MySQL Server 8.0\bin
(2)mysql -uroot -p密码
(3)alter user ‘root’@‘localhost’ identified with mysql_native_password by ‘密码’;

mysql -u用户名 -p密码。
出现箭头说明忘加分号了,补上就行。

猜你喜欢

转载自blog.csdn.net/qq_43144103/article/details/110137398