[mysql]dbeaver Unable to load authentication plugin ‘caching_sha2_password’. Unable to load authentication plugin ‘caching_sha2_password

왼쪽 위의 연결 버튼을 눌러서 아래와 같이 입력합니다.

dbeaver-mysql-connect

1
dbeaver Unable to load authentication plugin 'caching_sha2_password'. Unable to load authentication plugin 'caching_sha2_password'.

mysql 8 버전에서 다음과 같은 에러가 나오면 먼저 아래와 같이 mysql_native_password로 변경합니다.

  1. mysql -uroot -p
  2. show databases;
  3. use mysql;
  4. select host, user from user;
  5. 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