Er Not Supported Auth Mode Client Does Not Support

[Solved] Er Not Supported Auth Mode Client Does Not Support | Sql - Code Explorer | yomemimo.com
Question : ER_NOT_SUPPORTED_AUTH_MODE: Client does not support authentication protocol requested by server; consider upgrading MySQL client vs code

Answered by : alive-anteater-15qv27884uhx

A possible workaround is to alter the type of user account to use the old authentication plugin:
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'MyNewPass';
Or create a different one that uses that same plugin:
CREATE USER 'foo'@'localhost' IDENTIFIED WITH mysql_native_password BY 'bar';

Source : | Last Update : Tue, 04 May 21

Answers related to er not supported auth mode client does not support authentication protocol requested by server consider upgrading mysql client vs code

Code Explorer Popular Question For Sql