우분투 Postgresql 데이터베이스 외부접속 허용하기
2022.07.07 13:54
우분투에서 Postgresql 외부접속 허용하는 방법은 다음과 같다.
우분투에서 Postgresql 설정파일들은 다음 경로에 있다.
현재 Postgresql 10버전을 사용 중이라서 다음 경로에 있다.
/etc/postgresql/10/main/
수정해야 하는 설정파일은 postgresql.conf와 pg_hba.conf 파일이다.
postgresql.conf 파일에서는 listen_addresses설정 부분을 '*'으로 변경한다.
원래는 'localhost'로 되어 있거나 주석처리 되어 있다.
다음은 pg_hba.conf 파일에서 IPv4 부분을 수정한다.
원래는 host all all 127.0.0.1/32 md5로 되어 있는데,
host all all 0.0.0.0/0 md5
이렇게 변경한다.
두가지를 수정했으면 Postgresql을 재시작한다.
sudo service postgresql restart