MYSQL错误: Client does not support authentication protocol requested by server;
远程链接MYSQL的时候,产生下面错误。
Error: Client does not support authentication protocol requested by server; consider upgrading MySQL client解决方法:
先用root登录MYSQL服务器,执行
UPDATE mysql.user SET Password = OLD_PASSWORD(‘密码’) WHERE Host = ‘主机名’ AND User =’用户名’;
然后执行
FLUSH PRIVILEGES;