728x90
※ 이 글은 예전 블로그에서 퍼온 글입니다.
MySQL 을 설치하고 나서 실행하면 가끔식
Error: ER_NOT_SUPPORTED_AUTH_MODE: Client does not support authentication protocol requested by server; consider upgrading MySQL client
code: 'ER_NOT_SUPPORTED_AUTH_MODE',
errno: 1251,
sqlMessage: 'Client does not support authentication protocol requested by server; consider upgrading MySQL client',
sqlState: '08004',
fatal: true
이런 에러가 뜬다.
그럴 때는 아래와 같은 방식으로 사용자의 password를 바꾸어주면 해결 되더라.
(둘 다 입력)
ALTER USER 'root'@'localhost' IDENTIFIED BY 'your new password';
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'your new password';
'Programming > MySQL' 카테고리의 다른 글
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) 에러 (0) | 2020.04.06 |
---|