Win32 환경에서 PostgresSQL에 Add Server 동작을 수행하게
되면
다음과 같은 에러가 발생하고 있습니다.
==================================================================
An error has occured
Error connecting to the
server ==================================================================
그리고 다음은 제가 New Server 대화상자에서 입력한
값들입니다.
참고로 모든 설치 옵션은 기본값으로 해놓은 상태입니다.
Address : 192.168.0.149
Description : PostgreSQL Database Server 8.0.0-rc2
Service : pgsql-8.0.0-rc2
Port : 5432
Initial DB : template1
Username : postgres
need passowrd : ****
그리고, 다음은 pg_hba.conf의 connections 부분입니다.
# IPv4 local connections:
host all all 127.0.0.1/32 md5
host all all 192.168.0.1/255 md5
# IPv6 local connections:
#host all all ::1/128 md5
----------------------------------------------------------------
그리고 다음은 postgresql.conf의 Connection Settings
부분입니다.
# - Connection Settings -
listen_addresses = '*' # what IP interface(s) to listen
on;
# defaults to localhost, '*' = any
port = 5432
max_connections = 100
현재 제 PC에서 포스트 그레스 서버는 잘 돌아가고 있으며,
localhost의 접속 주소로 변경하게 되면,
접속은 잘되고 이것저것 테스트도 잘 되지만.. 실제로 제가
사용하고 있는 ip 주소로 포스트 그레스
서버를 추가하려고 하면...
==================================================================
An error has occured
Error connecting to the server
==================================================================
와 같은 에러가 발생하고 있습니다.
실제로 제가 사용하고 있는 PC의 IP주소는 192.168.0.149
입니다.
도와주세요~~ ^^;;
|