解决MySQL 8.0 - Client does not support authentication protocol requested by server;

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


转自:https://stackoverflow.com/questions/50093144/mysql-8-0-client-does-not-support-authentication-protocol-requested-by-server


Execute the following query in MYSQL Workbench

ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password'

Try connecting using node after you do so


9 down vote accepted

Execute the following query in MYSQL Workbench

ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password'

Try connecting using node after you do so

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