'Client does not support authent
2019-06-18 本文已影响0人
和弦之乐
连接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;