관리 메뉴

웹개발자의 기지개

[MySQL] CLIENT_PLUGIN_AUTH is required 접속에러 해결법 본문

SQL/MySQL

[MySQL] CLIENT_PLUGIN_AUTH is required 접속에러 해결법

http://portfolio.wonpaper.net 2022. 12. 2. 16:11

CLIENT_PLUGIN_AUTH is required 접속이 안되는 에러를 해결해 보자.

접속 Driver 버전이 맞이 않아서 발생한다. 시스템에 맞게 구버전 드라이버로 연결하면된다.

 

필자는 mysql 관리툴을 여러개 이용하는 DBeaver 를 기준으로 얘기하겠다.

다른 툴도 같은 방식으로 해결하면 된다.

 

 

Mysql connector 드라이버를 기존 버전으로 바꾸어 별도로 다운로드 받아놓자.

https://downloads.mysql.com/archives/c-j/

 

MySQL :: Download MySQL Connector/J (Archived Versions)

Please note that these are old versions. New releases will have recent bug fixes and features! To download the latest release of MySQL Connector/J, please visit MySQL Downloads. MySQL open source software is provided under the GPL License.

downloads.mysql.com

 

위의 이미지처럼 기존의 connector 파일을 삭제하고 Add File 해서 구버전의 connector로 연결하고 확인해보자. 

 

Comments