在Windows中安装mysql8后,使用Navicat连接数据库是出现“ Client does not support authentication protocol requested by server; consider upgrading MySQL client”错误:
重新修改登密码即可:
use mysql;
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '你的密码';
FLUSH PRIVILEGES;