Navicat 连接mysql Client does not support authentication protocol requested by server; consider upgrad

这是因为新版本的mysql使用了一种强编码方式,修改mysql库得以解决

USE mysql; 
ALTER USER ‘root’@’localhost’ IDENTIFIED WITH mysql_native_password BY ‘11111’; 
FLUSH PRIVILEGES;

猜你喜欢

转载自blog.csdn.net/qq_41332728/article/details/86135063