IP가 변경되었을때 서버 확인 사항

2022. 7. 26. 19:40경험/서버구축

DB접속시  아래와 같은 에러 발생

 

Ä¡¸íÀû¿À·ù: È£½ºÆ® "192.168.0.2", »ç¿ëÀÚ "XXXX", µ¥ÀÌÅͺ£À̽º "XXXXX", no encryption ¿¬°á¿¡ ´ëÇÑ ¼³Á¤ÀÌ pg_hba.conf ÆÄÀÏ¿¡ ¾ø½À´Ï´Ù. (pgjdbc: autodetected server-encoding to be ISO-8859-1, if the message is not readable, please check database logs and/or host, port, dbname, user, password, pg_hba.conf)

 

해결방법 : 

DB IP 접속 허용

 

C:\Program Files\PostgreSQL\14\data\pg_hba.conf 파일 수정

# IPv4 local connections:
host    all             all             127.0.0.1/32            scram-sha-256
host    all             all             192.168.0.2/32            md5 # 변경된 ip로 수정

 

ipTime
80,443포트 포트포워딩 적용