连接 mysql 出现Client does not suppo
2018-06-04 本文已影响0人
One_Hund
问题
在初始化小程序数据库时遇到了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;

问题得以解决:
