mysql

 

 

MySQL 사용권한 오류

 

- 오류 내용

Node.js 에서 MySQL 접속할 때 발생, 사용권한 오류

 

  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

 

mysql error

{
  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
}

 

- 해결방법

 

1. mysql root 계정으로 접속

 

2. 아래 명령어 입력

 

ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '비밀번호입력'; //따옴표 사용