Navicat连接MYsql报错

在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; 

猜你喜欢

转载自www.cnblogs.com/zaclearnlrogramming/p/8990368.html