SMALL

세팅값 접속 허용을위한

centOS 6.6 기준

/var/lib/pgsql/data/postgresql.conf 에서

기존은 listen_addresses  = localhost로 되어있음

listen_addresses 0,0,0,0 으로 변환

외부 접속허용시

LIST
블로그 이미지

SeoHW

,
SMALL

Cannot load JDBC driver class 'com.postgresql.jdbc.Driver' [duplicate]

에러시. 아래와같은 해당되는 버전 코드 추가 Pom.xml 파일.

Add the dependency on the postgresql driver to your pom.xml file

<dependency>
    <groupId>org.postgresql</groupId>
    <artifactId>postgresql</artifactId>
    <version>9.3-1101-jdbc41</version>
</dependency>
 
 
 
LIST

'PostgreSql' 카테고리의 다른 글

postgrersql 설치시 세팅값  (0) 2015.06.24
블로그 이미지

SeoHW

,