-
우분투 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네이버 클라우드 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 로 변경
반응형'네이버 클라우드' 카테고리의 다른 글
도커Dcoker에 젠킨스Jenkins 설치하기 with 네이버 클라우드 (7) 2024.10.03 네이버 클라우드 도커 Nginx와 Nginx Proxy Manager 설치하기 그리고 socket() [::]:80 failed 오류 (4) 2024.10.03 우분투 MySQL 설치하기 with 네이버 클라우드 (2) 2024.10.03 우분투 Ubuntu 인스턴스에 Docker 도커설치 with 네이버 클라우드 (0) 2024.10.02 네이버 클라우드(NAVER CLOUD PLATFORM) 우분투 무료서버 생성하기 + SSH 연결 (0) 2024.09.22