问题:Navicat连接MySQL Server8.0版本时出现Client does not support authentication protocol requested by server;
解决方法:打开mysql命令行
输入一下命令
use mysql
alter user 'root'@'localhost' identified with mysql_native_password by '你的密码';
flush priviledges;
问题解决
问题:Navicat连接MySQL Server8.0版本时出现Client does not support authentication protocol requested by server;
解决方法:打开mysql命令行
输入一下命令
use mysql
alter user 'root'@'localhost' identified with mysql_native_password by '你的密码';
flush priviledges;
问题解决