일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 우분투
- 설정
- node
- 자바스크립트
- java
- javascript
- script
- install
- JS
- 스크립트
- 리눅스
- 설치
- Linux
- 자바
- PostgreSQL
- ubuntu
- postgres
- Atlassian
- 하모니카
- DATABASE
- 3.0
- hamonikr
- 노드
- python
- DB
- 데이터베이스
- 파이썬
- 윈도우
- Windows
- 아틀라시안
Archives
- Today
- Total
LukeHan 의 잡다한 기술 블로그
Postgres 외부 접속 허용 본문
반응형
- OS : Ubuntu 22.04.2 LTS
- Postgres : 14.8
sudo vi /etc/postgresql/14/main/postgresql.conf
postgres 외부 접속 허용을 위해 위와 같이 입력한다
###### 기존 ######
...
#------------------------------------------------------------------------------
# CONNECTIONS AND AUTHENTICATION
#------------------------------------------------------------------------------
# - Connection Settings -
listen_addresses = 'localhost' # 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)
...
###### 변경 ######
...
#------------------------------------------------------------------------------
# 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.conf 파일에서 listen_addresses 항목을 찾아 위와 같이 '*' 로 변경한다
변경이 완료되면 :wq 입력하여 저장 종료한다
sudo vi /etc/postgresql/14/main/pg_hba.conf
위와 같이 입력하여 pg_hba.conf 파일을 연다
# TYPE DATABASE USER ADDRESS METHOD
# "local" is for Unix domain socket connections only
local all all scram-sha-256
# IPv4 local connections:
host all all 127.0.0.1/32 scram-sha-256
# IPv6 local connections:
host all all ::1/128 scram-sha-256
# Allow replication connections from localhost, by a user with the
# replication privilege.
local replication all scram-sha-256
host replication all 127.0.0.1/32 scram-sha-256
host replication all ::1/128 scram-sha-256
파일을 열면 하단에서 위와 같이 설정되어 있는 것을 확인할 수 있다.
# 외부 접근 모두 허용
host all all 0.0.0.0/0 scram-sha-256
# 특정 IP 접근 허용
host all all 192.168.100.100/32 scram-sha-256
위의 내용을 참고하여 설정 후 :wq 를 입력하여 저장 종료한다
sudo service postgresql restart
위와 같이 입력하여 postgres 를 재시작하여 설정을 적용한다
반응형
Comments