Navicat链接MySQL报错

Navicat链接MySQL报错:client does not support authentication protocol requested by server;consider upgrading MySQL client.的解决记录:mysql

一、打开sql

二、输入命令以下:ide

第一步:输入use mysql;server

第二步:输入alter user 'root'@'localhost' identified with mysql_native_password by 'root';(假设密码是root)blog

第三步:flush privileges;it

 

 

 

三、从新链接,便可。io