본문 바로가기

Database/MySQL

MySQL 각종 오류 해결법 기록

1. 

node 실행시 다음 에러가 발생했다.

 

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

 

MySQL Workbench에서 다음을 실행한다.

ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password';
flush privileges;

위의 password 대신 사용할 암호를 설정한다.

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

 

2. 맥에서 MySQL 완벽히 지우는 방법

gist.github.com/vitorbritto/0555879fe4414d18569d