-
외부 클라이언트 접속을 위한 Postgreql 서버 설정PostgreSQL 2010. 4. 7. 22:51포트 열림 확인
netstat -al | grep 5432
postgres가 설치된 디렉토리의 /data하위에 있는 설정파일인
pg_hba.conf -접속한 원격 PC IP 등록
host all all 0.0.0.0 0.0.0.0 trust - 전체외부에서 접속가능
host all all 0.0.0.0 255.255.255.255 trust - 해당 IP에서만 접속가능
host all all 0.0.0.0 255.255.255.0 trust - 내부 네트웍 IP 접속가능
postgresql.conf -에서 listen_addresses 등록
listen_addresses - '*'
port = 5432'PostgreSQL' 카테고리의 다른 글
Postgresql 바이너리 데이터 입력 (0) 2011.01.30 cannot open shared object file 메세지 해결 (0) 2011.01.06 postgres 팁 (0) 2010.11.25 postgresql.conf 설정내용 (0) 2010.11.25 plpgsql 등록, 설정 (0) 2010.05.03 댓글