连接mysql时报错:'Client does not support authentication protocol requested by server; consider upgrading MySQL client'
![](https://img.haomeiwen.com/i4639886/a0b774fad523e853.png)
解决:
USE mysql;
ALTER USER 'your_root_name'@'localhost' IDENTIFIED WITH mysql_native_password BY 'your_password';
FLUSH PRIVILEGES;
连接mysql时报错:'Client does not support authentication protocol requested by server; consider upgrading MySQL client'
解决:
USE mysql;
ALTER USER 'your_root_name'@'localhost' IDENTIFIED WITH mysql_native_password BY 'your_password';
FLUSH PRIVILEGES;
本文标题:'Client does not support authent
本文链接:https://www.haomeiwen.com/subject/cvitqctx.html
网友评论