Client does not support authentication protocol requested by server; consider upgrading MySQL client错误
病因:需要手动重置下MySQL的密码
解决方法:
使用命令行登陆MySQL后运行以下命令:
- alter user 'root'@localhost IDENTIFIED WITH mysql_native_password by '你的MySQL登陆密码';
注意:root是登陆MySQL的用户名,若不是root需要修改为自己的用户名。
然后再重新链接即可。
如图:
image.png
网友评论