Error: ER_NOT_SUPPORTED_AUTH_MODE:
Client does not support authentication protocol requested by server;
consider upgrading MySQL client
解决以上问题的办法:
mysql -u root -p
输入您的密码
use mysql;
alter user 'root'@'localhost' identified with mysql_native_password by '您的密码';
flush privileges;