连接MySQL出现错误:Client does not support authentication protocol reques

82 阅读1分钟

解决方法:

ALTER USER 'root'@'127.0.0.1' IDENTIFIED BY 'password' PASSWORD EXPIRE NEVER;

ALTER USER 'root'@'127.0.0.1' IDENTIFIED WITH mysql_native_password BY 'yourpassword';

FLUSH PRIVILEGES;