Navicat链接:Client does not support authentication protocol requested by server;

运维 / 2020-03-11

在mysql 后续版本中 更改了账户加密的方式,因此 对于这个问题,重新修改下 密码即可解决。

解方案

1. 登录

mysql -u root -p

2. 更改密码

alter user 'root'@'localhost' identified with mysql_native_password by 'password';

注意: 这里的 password 是你要填写的密码。

3. 刷新

flush privileges;