MySql 8.0의 기본 인증 플러그인
예전의 mysql_native_password가 아니라 caching_sha2_password이다.
Authentication plugin 'caching_sha2_password' cannot be loaded
I am connecting MySQL - 8.0 with MySQL Workbench and getting the below error: Authentication plugin 'caching_sha2_password'
방법1.
ALTER USER '계정'@'localhost' IDENTIFIED WITH mysql_native_password BY '비밀번호';
방법2.
my.ini 파일 변경
[mysqld]
default_authentication_plugin=mysql_native_password
'Database' 카테고리의 다른 글
[ERROR] MySQLSyntaxErrorException: Table doesn't exist .. (0) | 2021.12.07 |
---|---|
[ERROR] MySQL ERROR 1819 (HY000): Your password does not satisfy the current policy requirements (0) | 2021.11.25 |
GROUP BY, HAVING 절이란? ORDER BY 절이란? (0) | 2021.02.09 |
분석함수 vs 집계함수 (0) | 2021.02.09 |