Client does not support authentication protocol requested by server; consider upgrading MySQL client

Client does not support authentication protocol requested by server; consider upgrading MySQL client  解决

ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY '123465';


GRANT ALL PRIVILEGES ON *.* TO 'root'@'%';


FLUSH PRIVILEGES;
 

你可能感兴趣的:(mysql,数据库)