특정 공유기를 사용하는 pc한대에서 postgresql를 설치하고
다른 pc에서 db를 붙으려고 하는데 자꾸만 에러가 남 ㅜㅜ
springboot에서
spring:
datasource:
driverClassName: org.postgresql.Driver
url: jdbc:postgresql://192.168.0.*/abc
username: postgres
password: 1234
connect to PostgreSQL server: FATAL: no pg_hba.conf entry for host .....
그래서 구글링을 해보니깐 ?
postgresql에서 pg_hba.conf라는 파일을 수정하면 된다고 한다.
해당 파일을 찾아서 제일 마지막줄에
host all all 0.0.0.0/0 md5
를 추가해주면 된다.
구글링해보니 경로가 /var/lib/pgsql/data/pg_hba.conf
여기였는데 내 pc같은 경우는 c/programFiles/postgresql/9.4/data/pg_hba.conf
경로에 있었음
var폴더랑 lib폴더 찾다가 그냥 파일 전체를 검색해버림 ㅋ
'IT > SQL' 카테고리의 다른 글
Postgresql timestamp 비교 (0) | 2015.09.10 |
---|---|
ssl 외부 접속 연동 에러 : failed hostname verification check. Certificate contained (0) | 2015.04.23 |
ORA-28000: the account is locked (0) | 2014.07.08 |