본문 바로가기
백엔드/DB

[MySQL/Intellij] Public key retrieval is not allowed 에러 해결

by 작은소행성 2023. 9. 18.

 

에러 원인 

Mysql DB 에 접속시도를 했는데  Public key retrieval is not allowed  에러가 나면서 DB에 접속이 안되었다.

Mysql 8.0 버전 부터 보안적인 이슈로 useSSL 옵션에 대한 추가적인 설정이 필요해졌다. 

 

useSSL=false 로 설정되어 있는지,

allowPublicKeyRetrieval 설정이 되어 있는지 확인해본다. 

 

 

해결

만약 다음과 같은 에러가 난다면 두가지 옵션에 대해서 추가 및 변경해준다.

 

접속하는 datasource URL에 아래와 같이 설정해준다.

jdbc:mysql://localhost:port/database?useSSL=false&allowPublicKeyRetrieval=true

useSSL : DB에 SSL로 연결

allowPublicKeyRetrieval : 서버에서 RSA 공개키를 검색하거나 가져와야 하는지 

 

 

 

 

Intellij 에서  HikariDataSource 사용해서 DB 접속하기

 

반응형