Data Engineering/MY-SQL
[MY-SQL 연동에러]ER_NOT_SUPPORTED_AUTH_MODE: Client does not support authentication protocol requested by server
하 선생
2021. 5. 15. 17:21
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password';
or
ALTER USER 'root' IDENTIFIED WITH mysql_native_password BY 'password';
flush privileges;
------------------------------------------------------------------------------------------------------
[참고]
http://minsql.com/mysql8/C-2-A-authentificationPlugin/