네이버 클라우드
우분투 MySQL설치시 오류(네이버 클라우드) Connection refused: no further informationthe last packet sent successfully to the server was 0 milliseconds ago. the driver has not received any packets from the server. connection refused: no further infomation
dev.mk
2024. 9. 22. 20:51
반응형
네이버 클라우드 우분투 서버에 mysql을 설치하고 인바운드 방화벽 규칙까지 설정했는데도
DBeaver 디비에서 연결시
Connection refused:
no further informationthe last packet sent successfully to the server was 0 milliseconds ago.
the driver has not received any packets from the server. connection refused: no further infomation
오류가 발생.
이유는 외부접속허용을 위해 bind-adress의 아이피를 수정해줘야한다.
mysql conf파일을 수정해야하며 아래의 명령어로 설정파일을 편집모드로 들어간다.
vi /etc/mysql/mysql.conf.d/mysqld.cnf
내용중에
bind-address = 127.0.0.1 을 > 0.0.0.0 으로 변경
mysqlx-bind-address 는 주석처리.
[AFTER]
bind-address = 0.0.0.0
#mysqlx-bind-address = 127.0.0.1
저장.
※ test connection에서 public key 문제 시 Driver properties탭 에서 설정 TRUE 로 변경
반응형