PostgreSQL을 설치하면 기본적으로 외부에서 접속할 수 없다. config를 수정해 줘야 한다.
우선 Ubuntu에서 열려있는 포트를 확인한다.
$ netstat -nltp
(Not all processes could be identified, non-owned process info
will not be shown, you would have to be root to see it all.)
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 127.0.0.53:53 0.0.0.0:* LISTEN -
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN -
tcp 0 0 127.0.0.1:5432 0.0.0.0:* LISTEN 639/postgres
tcp6 0 0 :::22 :::* LISTEN -
postgres의 기본 포트는 5432이다.
위 결과처럼 127.0.0.1:5432로 되어 있다면 5432포트는 내부에서만 접속할 수 있다는 뜻이다.
Postgres 설정을 변경하려면 postgresql.conf에서 변경해 줘야 한다.
$ sudo vim /etc/postgresql/10/main/postgresql.conf
사용법: sudo vim /etc/postgresql/[POSTGRESQL_VERSION]/main/postgresql.conf
postgresql.conf에서 listen_address를 찾는다. 기본으로 localhost로 설정되어 있을 것이다.
이를 '*'로 변경하여 어디서든 접근할 수 있도록 설정한다.
#------------------------------------------------------------------------------
# CONNECTIONS AND AUTHENTICATION
#------------------------------------------------------------------------------
# - Connection Settings -
listen_addresses = '*' # what IP address(es) to listen on;
# comma-separated list of addresses;
# defaults to 'localhost'; use '*' for all
# (change requires restart)
port = 5432 # (change requires restart)
max_connections = 100 # (change requires restart)
수정 후, postgresql을 재시작한다.
$ sudo /etc/init.d/postgresql restart
그 다음 포트를 다시 확인한다.
$ netstat -nltp
(Not all processes could be identified, non-owned process info
will not be shown, you would have to be root to see it all.)
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 127.0.0.53:53 0.0.0.0:* LISTEN -
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN -
tcp 0 0 0.0.0.0:5432 0.0.0.0:* LISTEN -
tcp6 0 0 :::22 :::* LISTEN -
tcp6 0 0 :::5432 :::* LISTEN -
5432포트가 0.0.0.0:5432로 되어있는 것을 확인할 수 있으며 이는 외부에서 접속이 가능하다는 뜻이다.
(확인하기 위해서는 외부 서버에서 telnet접속으로 연결이 되는지 확인한다.)
$ telnet 192.168.1.195 5432
Trying 192.168.1.195...
Connected to 192.168.1.195.
Escape character is '^]'.
pg_hba.conf 파일의 설정도 변경해야 한다.
postgresql.conf와 같은 위치에 있으며 아래와 같이 파일을 연다.
$ sudo vim /etc/postgresql/10/main/pg_hba.conf
사용법: sudo vim /etc/postgresql/[POSTGRESQL_VERSION]/main/pg_hba.conf
파일 내용중 IPv4 local connections 부분을 찾는다.
이부분을 아래와 같이 모든 유저의 계정으로 모든 데이터베이스에 모든 외부접속을 허용하도록 수정한다.
127.0.0.1/32 -> 0.0.0.0/0
# DO NOT DISABLE!
# If you change this first entry you will need to make sure that the
# database superuser can access the database using some other method.
# Noninteractive access to all databases is required during automatic
# maintenance (custom daily cronjobs, replication, and similar tasks).
#
# Database administrative login by Unix domain socket
local all postgres peer
# TYPE DATABASE USER ADDRESS METHOD
# "local" is for Unix domain socket connections only
local all all peer
# IPv4 local connections:
host all all 0.0.0.0/0 md5
# IPv6 local connections:
host all all ::1/128 md5
# Allow replication connections from localhost, by a user with the
수정 후에 다시 postgresql을 재시작 해준다.
$ sudo /etc/init.d/postgresql restart
이제 외부에서 접속이 되는지 확인한다.
(필자는 DBeaver툴로 아래와 같이 Connection 검증을 하였다.)
#Reference
https://dejavuqa.tistory.com/32
'DataBase > PostgreSQL' 카테고리의 다른 글
[PostgreSQL] Port 변경 방법 (0) | 2022.06.04 |
---|---|
[PostgreSQL] pg_hba.conf / DB의 보안설정의 필요성 (0) | 2022.05.31 |
[PostgreSQL] 시퀀스(Sequence) 사용법 (0) | 2021.12.29 |