安装了navicat 和 mysql,结果最后在navicat中连接mysql时,出现了如下错误提示:
Client does not support authentication protocol requested by server; consider upgrading MySQL client
解决方法:在mysqll里依次输入
1 USE mysql; 2 ALTER USER ‘root‘@‘localhost‘ IDENTIFIED WITH mysql_native_password BY ‘831015‘; 3 FLUSH PRIVILEGES;
记得点赞收藏。