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 with mysql_native_password by  '123'; 

刷新权限:flush privileges;

再看看加密方式:

没有乱码现象

再次尝试:

 

posted @ 2020-01-30 12:45  阿布不学习  阅读(345)  评论(0编辑  收藏  举报