Обсуждение: possible Bug in windows version ?

Поиск
Список
Период
Сортировка

possible Bug in windows version ?

От
gpio Oxxce
Дата:
Hi all,

After downloading and installing the latest Postgresql server (postgresql-8.2.3-1.zip)
I can not make it accept local IP connections!
I edit the pg_hba.conf file with
host   all all 192.168.100.1/32   trust
but still I can't connect from 192.168.100.1 to the DB.
Also during the installation I checked the option "Accept TCP connections.." (or something like that)

Am I missing something or it is a possible bug ?

Thanks
George


Χρησιμοποιείτε Yahoo!
Βαρεθήκατε τα ενοχλητικά μηνύ ματα (spam); Το Yahoo! Mail διαθέτει την καλύτερη δυνατή προστασία κατά των ενοχλητικών μηνυμάτων
http://login.yahoo.com/config/mail?.intl=gr

Re: possible Bug in windows version ?

От
Paul Lambert
Дата:
gpio Oxxce wrote:
> Hi all,
>
> After downloading and installing the latest Postgresql server
> (postgresql-8.2.3-1.zip
> <http://wwwmaster.postgresql.org/download/mirrors-ftp?file=binary%2Fv8.2.3%2Fwin32%2Fpostgresql-8.2.3-1.zip>)
> I can not make it accept local IP connections!
> I edit the |pg_hba.conf |file with
>
> host   all all 192.168.100.1/32   trust
>
> but still I can't connect from 192.168.100.1 to the DB.
> Also during the installation I checked the option "Accept TCP
> connections.." (or something like that)
>
> Am I missing something or it is a possible bug ?
>
> Thanks
> George
>

In putting in the above line did you replace the host line with address
"127.0.0.1/32"? If so, that's probably your problem - it needs the 127*
line. Is postmaster listening on the default port (5432) or did you
change that during install? (Can check that in the postgresql.conf file
in the same place as pg_hba.conf)

How are you trying to connect? (pgAdminIII, some other program using the
ODBC driver?) What error are you getting?

NB: I get access denied if I put my servers IP address into the
pg_hba.conf file and comment out the existing 127 address line. Local
connections would not go out through the network and would thus not be
seen by PG as coming from your 192/168 address.

P.

--
Paul Lambert
Database Administrator
AutoLedgers


Θέμα: Re: possible Bug in windows version ?

От
gpio Oxxce
Дата:
Hi Paul, All,

My host   pg_hba.conf:
host     all         all         127.0.0.1/32                 md5
host    all         all          192.168.1.1/32          trust
host    all         all          192.168.1.2/32          trust

and postgresql.conf:
listen_addresses = '*'       
port = 5432               
max_connections = 100   

the 192.168.1.1 is also the server IP, and I am tryning to connect from the 192.168.1.2 with pgExlorer and pgAdmin  but I get a message :
"Cannot connect to Server. Connection timeout . Chech if the server is running and accepting TCP connections on 5432"

I will try to setup the database and see if this happens also the binary distribution without  the installer.

Thx
George


Paul Lambert <paul.lambert@autoledgers.com.au> έγραψε:
gpio Oxxce wrote:
> Hi all,
>
> After downloading and installing the latest Postgresql server
> (postgresql-8.2.3-1.zip
> )
> I can not make it accept local IP connections!
> I edit the |pg_hba.conf |file with
>
> host all all 192.168.100.1/32 trust
>
> but still I can't connect from 192.168.100.1 to the DB.
> Also during the installation I checked the option "Accept TCP
> connections.." (or something like that)
>
> Am I missing something or it is a possible bug ?
>
> Thanks
> George
>

In putting in the above line did you replace the host line with address
"127.0.0.1/32"? If so, that's probably your problem - it needs the 127*
line. Is postmaster listening on the default port (5432) or did you
change that during install? (Can check that in the postgresql.conf file
in the same place as pg_hba.conf)

How are you trying to connect? (pgAdminIII, some other program using the
ODBC driver?) What error are you getting?

NB: I get access denied if I put my servers IP address into the
pg_hba.conf file and comment out the existing 127 address line. Local
connections would not go out through the network and would thus not be
seen by PG as coming from your 192/168 address.

P.

--
Paul Lambert
Database Administrator
AutoLedgers


---------------------------(end of broadcast)---------------------------
TIP 5: don't forget to increase your free space map settings


Χρησιμοποιείτε Yahoo!
Βαρεθήκατε τα ενοχλητικά μηνύ ματα (spam); Το Yahoo! Mail διαθέτει την καλύτερη δυνατή προστασία κατά των ενοχλητικών μηνυμάτων
http://login.yahoo.com/config/mail?.intl=gr


Χρησιμοποιείτε Yahoo!
Βαρεθήκατε τα ενοχλητικά μηνύ ματα (spam); Το Yahoo! Mail διαθέτει την καλύτερη δυνατή προστασία κατά των ενοχλητικών μηνυμάτων
http://login.yahoo.com/config/mail?.intl=gr

Re: Θέμα: Re: [ADMIN] possible Bug in windows version ?

От
"Andy Shellam (Mailing Lists)"
Дата:
If you're running one of Windows XP SP2 or Windows Server 2003, the Windows Firewall will be blocking the connection.
If you have the "Windows Firewall" option in Control Panel, check it's disabled, then try again.

If that cures your problem, add an exception in for port 5432 before you turn the firewall back on.

Andy.


gpio Oxxce wrote:
Hi Paul, All,

My host   pg_hba.conf:
host     all         all         127.0.0.1/32                 md5
host    all         all          192.168.1.1/32          trust
host    all         all          192.168.1.2/32          trust

and postgresql.conf:
listen_addresses = '*'       
port = 5432               
max_connections = 100   

the 192.168.1.1 is also the server IP, and I am tryning to connect from the 192.168.1.2 with pgExlorer and pgAdmin  but I get a message :
"Cannot connect to Server. Connection timeout . Chech if the server is running and accepting TCP connections on 5432"

I will try to setup the database and see if this happens also the binary distribution without  the installer.

Thx
George


Paul Lambert <paul.lambert@autoledgers.com.au> έγραψε:
gpio Oxxce wrote:
> Hi all,
>
> After downloading and installing the latest Postgresql server
> (postgresql-8.2.3-1..zip
> )
> I can not make it accept local IP connections!
> I edit the |pg_hba.conf |file with
>
> host all all 192.168.100.1/32 trust
>
> but still I can't connect from 192.168.100.1 to the DB.
> Also during the installation I checked the option "Accept TCP
> connections.." (or something like that)
>
> Am I missing something or it is a possible bug ?
>
> Thanks
> George
>

In putting in the above line did you replace the host line with address
"127.0.0.1/32"? If so, that's probably your problem - it needs the 127*
line. Is postmaster listening on the default port (5432) or did you
change that during install? (Can check that in the postgresql.conf file
in the same place as pg_hba.conf)

How are you trying to connect? (pgAdminIII, some other program using the
ODBC driver?) What error are you getting?

NB: I get access denied if I put my servers IP address into the
pg_hba.conf file and comment out the existing 127 address line. Local
connections would not go out through the network and would thus not be
seen by PG as coming from your 192/168 address.

P..

--
Paul Lambert
Database Administrator
AutoLedgers


---------------------------(end of broadcast)---------------------------
TIP 5: don't forget to increase your free space map settings


Χρησιμοποιείτε Yahoo!
Βαρεθήκατε τα ενοχλητικά μηνύ ματα (spam); Το Yahoo! Mail διαθέτει την καλύτερη δυνατή προστασία κατά των ενοχλητικών μηνυμάτων
http://login.yahoo.com/config/mail?.intl=gr


Χρησιμοποιείτε Yahoo!
Βαρεθήκατε τα ενοχλητικά μηνύ ματα (spam); Το Yahoo! Mail διαθέτει την καλύτερη δυνατή προστασία κατά των ενοχλητικών μηνυμάτων
http://login.yahoo.com/config/mail?.intl=gr
!DSPAM:37,45d2ce7b18511494436004!


-- 
Andy Shellam
NetServe Support Team

the Mail Network
"an alternative in a standardised world"

p: +44 (0) 121 288 0832/0839
m: +44 (0) 7818 000834

Re: possible Bug in windows version ?

От
gpio Oxxce
Дата:
Hi All,

You have right, the windows firewall caused the problem !!
Thx again

George

"Andy Shellam (Mailing Lists)" <andy.shellam-lists@mailnetwork.co.uk> έγραψε:
If you're running one of Windows XP SP2 or Windows Server 2003, the Windows Firewall will be blocking the connection.
If you have the "Windows Firewall" option in Control Panel, check it's disabled, then try again.

If that cures your problem, add an exception in for port 5432 before you turn the firewall back on.

Andy.


gpio Oxxce wrote:
Hi Paul, All,

My host   pg_hba.conf:
host     all         all         127.0.0.1/32                 md5
host    all         all          192.168.1.1/32          trust
host    all         all          192.168.1.2/32          trust

and postgresql.conf:
listen_addresses = '*'       
port = 5432               
max_connections = 100   

the 192.168.1.1 is also the server IP, and I am tryning to connect from the 192.168.1.2 with pgExlorer and pgAdmin  but I get a message :
"Cannot connect to Server. Connection timeout . Chech if the server is running and accepting TCP connections on 5432"

I will try to setup the database and see if this happens also the binary distribution without  the installer.

Thx
George


Paul Lambert <paul.lambert@autoledgers.com.au> έγραψε:
gpio Oxxce wrote:
> Hi all,
>
> After downloading and installing the latest Postgresql server
> (postgresql-8.2.3-1..zip
> )
> I can not make it accept local IP connections!
> I edit the |pg_hba.conf |file with
>
> host all all 192.168.100.1/32 trust
>
> but still I can't connect from 192.168.100.1 to the DB.
> Also during the installation I checked the option "Accept TCP
> connections.." (or something like that)
>
> Am I missing something or it is a possible bug ?
>
> Thanks
> George
>

In putting in the above line did you replace the host line with address
"127.0.0.1/32"? If so, that's probably your problem - it needs the 127*
line. Is postmaster listening on the default port (5432) or did you
change that during install? (Can check that in the postgresql.conf file
in the same place as pg_hba.conf)

How are you trying to connect? (pgAdminIII, some other program using the
ODBC driver?) What error are you getting?

NB: I get access denied if I put my servers IP address into the
pg_hba.conf file and comment out the existing 127 address line. Local
connections would not go out through the network and would thus not be
seen by PG as coming from your 192/168 address.

P..

--
Paul Lambert
Database Administrator
AutoLedgers


---------------------------(end of broadcast)---------------------------
TIP 5: don't forget to increase your free space map settings


Χρησιμοποιείτε Yahoo!
Βαρεθήκατε τα ενοχλητικά μηνύ ματα (spam); Το Yahoo! Mail διαθέτει την καλύτερη δυνατή προστασία κατά των ενοχλητικών μηνυμάτων
http://login.yahoo.com/config/mail?.intl=gr

Χρησιμοποιείτε Yahoo!
Βαρεθήκατε τα ενοχλητικά μηνύ ματα (spam); Το Yahoo! Mail διαθέτει την καλύτερη δυνατή προστασία κατά των ενοχλητικών μηνυμάτων
http://login.yahoo.com/config/mail?.intl=gr
!DSPAM:37,45d2ce7b18511494436004!


-- 
Andy Shellam
NetServe Support Team

the Mail Network
"an alternative in a standardised world"

p: +44 (0) 121 288 0832/0839
m: +44 (0) 7818 000834


Χρησιμοποιείτε Yahoo!
Βαρεθήκατε τα ενοχλητικά μηνύ ματα (spam); Το Yahoo! Mail διαθέτει την καλύτερη δυνατή προστασία κατά των ενοχλητικών μηνυμάτων
http://login.yahoo.com/config/mail?.intl=gr


Χρησιμοποιείτε Yahoo!
Βαρεθήκατε τα ενοχλητικά μηνύ ματα (spam); Το Yahoo! Mail διαθέτει την καλύτερη δυνατή προστασία κατά των ενοχλητικών μηνυμάτων
http://login.yahoo.com/config/mail?.intl=gr