개발자의 끄적끄적

[sql/mysql] jdbs mysql RSA public key is not available client side (option serverRsaPublicKeyFile not set) 오류 해결방법 본문

개발/sql

[sql/mysql] jdbs mysql RSA public key is not available client side (option serverRsaPublicKeyFile not set) 오류 해결방법

효벨 2021. 2. 15. 01:00
728x90
반응형

[sql/mysql] jdbs mysql RSA public key is not available client side (option serverRsaPublicKeyFile not set) 오류 해결방법

 

 

jdbc mysql 연동을 하던중

 

아래와 같은 오류가 발생하는 경우가 있습니다.

RSA public key is not available client side (option serverRsaPublicKeyFile not set)

 

그럴때는 jdbc Url 뒤에 아래 문구를 붙여주면 됩니다.

allowPublicKeyRetrieval=true&useSSL=false

 

아래는 예제입니다.

jdbc:mysql://localhost:3306/foodcourt?allowPublicKeyRetrieval=true&useSSL=false

 

 

참고들하세요!

반응형
Comments