[mysql]dbeaver Unable to load authentication plugin ‘caching_sha2_password’. Unable to load authentication plugin ‘caching_sha2_password
왼쪽 위의 연결 버튼을 눌러서 아래와 같이 입력합니다.
1
dbeaver Unable to load authentication plugin 'caching_sha2_password'. Unable to load authentication plugin 'caching_sha2_password'.
mysql 8 버전에서 다음과 같은 에러가 나오면 먼저 아래와 같이 mysql_native_password로 변경합니다.
- mysql -uroot -p
- show databases;
- use mysql;
- select host, user from user;
- alter user ‘root’@’localhost’ identified with mysql_native_password by ‘{비밀번호}’;
1
No timezone mapping entry for 'Auto-detect' No timezone mapping entry for 'Auto-detect'
와 같은 에러가 나오면 timezome을 Asia/Seoul로 명시해서 연결 합니다.
Leave a comment