007-解决Navicat报错1251-Client does not support authentication protocol requested by server;consider upgrading MySQL client

报错:

 解决方法:

输入select host,user,plugin,authentication_string from mysql.user;  看用户信息

更改加密方式,重置密码:(原加密方式为:alter user 'root'@'localhost' identified by  '123';)

alter user 'root'@'localhost' identified by  '123'; 

刷新权限:flush privileges;

再看看加密方式:

没有乱码现象

再次尝试:

猜你喜欢

转载自www.cnblogs.com/qiuniao/p/12242510.html