解决 Client does not support authentication protocol requested by server; consider upgrading MySQL client方案:
原因:mysql server使用的是8.0的版本,密码加密方式发生了变化,使用的Navicat版本较低,不能适配8.0的mysql的加密方式;
异常是:客户端不支持加密方式访问服务端,考虑升级客户端
//先执行
alter user 'root'@'localhost' identified by '当前密码' password expire never;
//再执行
alter user 'root'@'localhost' identified with mysql_native_password by '新密码';
//最后执行
flush privileges;
首先设置当前密码过期
其次设置新密码
最后刷新缓存就可以解决了