제로하우스
[MySQL] Error: ER_NOT_SUPPORTED_AUTH_MODE: Client does not support authentication protocol requested by server; consider upgrading MySQL client 본문
DB&SQL
[MySQL] Error: ER_NOT_SUPPORTED_AUTH_MODE: Client does not support authentication protocol requested by server; consider upgrading MySQL client
송제로투 2022. 5. 31. 21:12MySQL 서버 연결을 시도하였지만, 아래와 같은 오류 메시지가 발생하면서 서버 연결이 거부되었다.
Error: ER_NOT_SUPPORTED_AUTH_MODE: Client does not support authentication protocol requested by server; consider upgrading MySQL client
이런 경우에는 mysql 서버에 들어가서 비밀번호를 변경해주면 해결이 된다.
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '<변경할 비밀번호>';
'DB&SQL' 카테고리의 다른 글
[TIL][DB] 03 NoSQL (0) | 2022.06.02 |
---|---|
[TIL][DB] 02 관계형 데이터베이스 (RDB) (0) | 2022.06.02 |
[TIL][DB] 01 Database Intro (0) | 2022.06.02 |
[MySQL] windows 'mysql'은(는) 내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는 배치 파일이 아닙니다. (0) | 2022.05.31 |
[MySQL] System has not been booted with systemd as init system (PID 1). Can't operate. (0) | 2022.05.30 |
Comments