DB/Postgresql
[Postgresql] 외부접속 허용하기, unable to connect to server
JENN_tech7
2021. 7. 27. 15:06
728x90
SMALL
오류해결하기
경로는 C:\Program Files\PostgreSQL\12\data
이 안에 있는 pg_hba_conf, postgresql.conf파일을 수정
- pg_hba_conf파일 IPv4 local connections 하단에 추가하기
host all all 0.0.0.0/0 md5
- postgresql.conf파일
listen_addresses = "*" posrt = 5432
728x90
LIST