Server/Docker

[Docker MySQL] com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago.

hyeseo 2022. 9. 26. 16:59

 

com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at com.mysql.cj.jdbc.exceptions.SQLError.createCommunicationsException(SQLError.java:174) ~[mysql-connector-java-8.0.30.jar:8.0.30]

 

❗️ 원인

1. useSSL=false로 설정하고 allowPublicKeyRetrieval 설정을 하지 않은 경우입니다.

 

💡 해결방법 : https://tira-0.tistory.com/217

 

[MySQL] java.sql.SQLNonTransientConnectionException: Public Key Retrieval is not allowed

java.sql.SQLNonTransientConnectionException: Public Key Retrieval is not allowed ❗️에러 발생 원인 useSSL=false로 설정하고 allowPublicKeyRetrieval 설정을 하지 않은 경우입니다. ☘️ 해결 방법 allo..

tira-0.tistory.com

 

 

 

2. MySQL user의 외부접속 허용을 하지 않은 경우 입니다.

 

💡해결방법 : https://tira-0.tistory.com/221

 

[Docker Mac] MySQL Community Server container 실행하기

 💡 MySQL Community Server container 실행 및 설정 방법 입니다. ▼ 목차 ☘️ MySQL 컨테이너(container) 실행 ☘️ MySQL Community Server 설정 ☘️ MySQL container root 권한으로 접속하기 ☘️ MySQ..

tira-0.tistory.com