Configure foreign host for PostgreSQL 8.0.3 on WindowsXP

Configure foreign host for PostgreSQL 8.0.3 on WindowsXP

am 28.09.2005 09:33:14 von Todd Rockhold

------=_Part_862_25805662.1127892794651
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
Content-Disposition: inline

Installed PostgreSQL 8.0.3 on WindowsXP. Have not been able to configure so
that a client program running on a different WindowsXP box can connect to
the PostgreSQL database.

As I understand the documentation, at least one of the following
configurations should work, but none do. What have I done wrong and how can
I configure so that a connection can be successfully made?


1) The postgresql.conf file has (with everything else being the installatio=
n
default values):

listen_addresses =3D '*'

2) None of the following configurations of the pg_hba.conf file worked (the
program runs on 192.168.2.120 ):

# IPv4 local connections:
#host all all 127.0.0.1/32 md5
host all all 192.168.2.120/24 md5

# IPv4 local connections:
#host all all 127.0.0.1/32 md5
host all all 192.168.2.120
255.255.255.255md5

# IPv4 local connections:
host all all 127.0.0.1/32 md5
host all all 192.168.2.120/24 md5

# IPv4 local connections:
host all all 127.0.0.1/32 md5
host all all 192.168.2.120
255.255.255.255md5

I have a Symantec personal firewall installed which I turned off during
testing.

The program runs fine on localhost.

Am using the Npgsql .NET library. The Npgsql.Npgsql.Open() call throws an
exception, the error text of which is "System.Net.Sockets.SocketException:
NO connection could be made because the target machine actively refused it.=
"

------=_Part_862_25805662.1127892794651
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
Content-Disposition: inline

Installed PostgreSQL 8.0.3 on WindowsXP.  Have not been able to
configure so that a client program running on a different WindowsXP box can=
connect to the PostgreSQL database.



As I understand the documentation, at least one of the following configurat=
ions should
work, but none do.  What have I done wrong and how can I
configure so that a connection can be successfully made?





1) The postgresql.conf file has (with everything else being the installatio=
n default values):



listen_addresses =3D '*'



2) None of the following configurations of the pg_hba.conf file worked (the=
program runs on ):



# IPv4 local connections:

#host   
all        
all        
    &nb=
sp;     md5

host   
all        
all           
   &=
nbsp;   md5



# IPv4 local connections:

#host   
all        
all        
    &nb=
sp;     md5

host   
all        
all           
5.255.255">255.255.255.255       md5



# IPv4 local connections:

host   
all        
all        
    &nb=
sp;     md5

host   
all        
all        
   &=
nbsp;   md5



# IPv4 local connections:

host   
all        
all        
    &nb=
sp;     md5

host   
all        
all           
5.255.255">255.255.255.255       md5



I have a Symantec personal firewall installed which I turned off during tes=
ting.



The program runs fine on localhost.



Am using the Npgsql .NET library.  The Npgsql.Npgsql.Open() call
throws an exception, the error text of which is
"System.Net.Sockets.SocketException: NO connection could be made
because the target machine actively refused it."





------=_Part_862_25805662.1127892794651--

Re: Configure foreign host for PostgreSQL 8.0.3 on WindowsXP

am 28.09.2005 10:14:11 von Magnus Hagander

> Installed PostgreSQL 8.0.3 on WindowsXP. Have not been able=20
> to configure so that a client program running on a different=20
> WindowsXP box can connect to the PostgreSQL database.=20
>=20
> As I understand the documentation, at least one of the=20
> following configurations should work, but none do. What have=20
> I done wrong and how can I configure so that a connection can=20
> be successfully made?
>=20
>=20
> 1) The postgresql.conf file has (with everything else being=20
> the installation default values):=20
>=20
> listen_addresses =3D '*'
>=20
> 2) None of the following configurations of the pg_hba.conf=20
> file worked (the program runs on 192.168.2.120):
>=20
> # IPv4 local connections:
> #host all all 127.0.0.1/32 md5
> host all all 192.168.2.120/24 md5
>=20
> # IPv4 local connections:
> #host all all 127.0.0.1/32 md5
> host all all 192.168.2.120=20
> 255.255.255.255 md5
>=20
> # IPv4 local connections:
> host all all 127.0.0.1/32 md5
> host all all 192.168.2.120/24 md5
>=20
> # IPv4 local connections:
> host all all 127.0.0.1/32 md5
> host all all 192.168.2.120=20
> 255.255.255.255 md5
>=20
> I have a Symantec personal firewall installed which I turned=20
> off during testing.=20
>=20
> The program runs fine on localhost.
>=20
> Am using the Npgsql .NET library. The Npgsql.Npgsql.Open()=20
> call throws an exception, the error text of which is=20
> "System.Net.Sockets.SocketException: NO connection could be=20
> made because the target machine actively refused it."

Check:
1) the listen_address=3D'*' didn't "take". Make sure you remembered to
remove the comment sign (yup, i've seen that mistake manu times). Also,
you need to restart the service after you've changed that, perhaps you
forgot it?
2) Is there any chance that the postmaster is running on a non-default
port? Or that the client is connecting on a non-standard port?
3) Verify that the IP Npgsql connects to is correct. If you're using a
DNS name, make sure it resolves right.

If all those look right, run a "netstat -na" on the commandline and see
if there is a listener to port 5432 and what IP that one is bound to.

//Magnus

---------------------------(end of broadcast)---------------------------
TIP 6: explain analyze is your friend

Re: Configure foreign host for PostgreSQL 8.0.3 on WindowsXP

am 28.09.2005 14:57:27 von Dario

this line
host all all 192.168.2.120/24 md5
----------------

makes no sense to me, and probably neither to postgresql, it should be:
192.168.2.120/32 # if 192.168.2.120 is your client, this should be
enough
or
192.168.2.0/24 # if you wanted to allow all host in subnet to
validate thru md5, use this


long life, little spam and prosper.

-----Mensaje original-----
De: pgsql-admin-owner@postgresql.org
[mailto:pgsql-admin-owner@postgresql.org]En nombre de Magnus Hagander
Enviado el: miercoles, 28 de septiembre de 2005 5:14
Para: Todd Rockhold; pgsql-admin@postgresql.org
Asunto: Re: [ADMIN] Configure foreign host for PostgreSQL 8.0.3 on
WindowsXP


> Installed PostgreSQL 8.0.3 on WindowsXP. Have not been able
> to configure so that a client program running on a different
> WindowsXP box can connect to the PostgreSQL database.
>
> As I understand the documentation, at least one of the
> following configurations should work, but none do. What have
> I done wrong and how can I configure so that a connection can
> be successfully made?
>
>
> 1) The postgresql.conf file has (with everything else being
> the installation default values):
>
> listen_addresses = '*'
>
> 2) None of the following configurations of the pg_hba.conf
> file worked (the program runs on 192.168.2.120):
>
> # IPv4 local connections:
> #host all all 127.0.0.1/32 md5
> host all all 192.168.2.120/24 md5
>
> # IPv4 local connections:
> #host all all 127.0.0.1/32 md5
> host all all 192.168.2.120
> 255.255.255.255 md5
>
> # IPv4 local connections:
> host all all 127.0.0.1/32 md5
> host all all 192.168.2.120/24 md5
>
> # IPv4 local connections:
> host all all 127.0.0.1/32 md5
> host all all 192.168.2.120
> 255.255.255.255 md5
>
> I have a Symantec personal firewall installed which I turned
> off during testing.
>
> The program runs fine on localhost.
>
> Am using the Npgsql .NET library. The Npgsql.Npgsql.Open()
> call throws an exception, the error text of which is
> "System.Net.Sockets.SocketException: NO connection could be
> made because the target machine actively refused it."

Check:
1) the listen_address='*' didn't "take". Make sure you remembered to
remove the comment sign (yup, i've seen that mistake manu times). Also,
you need to restart the service after you've changed that, perhaps you
forgot it?
2) Is there any chance that the postmaster is running on a non-default
port? Or that the client is connecting on a non-standard port?
3) Verify that the IP Npgsql connects to is correct. If you're using a
DNS name, make sure it resolves right.

If all those look right, run a "netstat -na" on the commandline and see
if there is a listener to port 5432 and what IP that one is bound to.

//Magnus

---------------------------(end of broadcast)---------------------------
TIP 6: explain analyze is your friend


---------------------------(end of broadcast)---------------------------
TIP 9: In versions below 8.0, the planner will ignore your desire to
choose an index scan if your joining column's datatypes do not
match

Re: Configure foreign host for PostgreSQL 8.0.3 on WindowsXP

am 29.09.2005 06:46:52 von Manikandan C

This is a multi-part message in MIME format.

------_=_NextPart_001_01C5C4B0.BE8ADBC5
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

Try disabling firewall. Because it may prevent any connections to your =
machine.
=20
Regards,
Mani

-----Original Message-----
From: pgsql-admin-owner@postgresql.org =
[mailto:pgsql-admin-owner@postgresql.org]On Behalf Of Todd Rockhold
Sent: Wednesday, September 28, 2005 1:03 PM
To: pgsql-admin@postgresql.org
Subject: [ADMIN] Configure foreign host for PostgreSQL 8.0.3 on =
WindowsXP


Installed PostgreSQL 8.0.3 on WindowsXP. Have not been able to =
configure so that a client program running on a different WindowsXP box =
can connect to the PostgreSQL database.=20

As I understand the documentation, at least one of the following =
configurations should work, but none do. What have I done wrong and how =
can I configure so that a connection can be successfully made?


1) The postgresql.conf file has (with everything else being the =
installation default values):=20

listen_addresses =3D '*'

2) None of the following configurations of the pg_hba.conf file worked =
(the program runs on 192.168.2.120):

# IPv4 local connections:
#host all all 127.0.0.1/32 md5
host all all 192.168.2.120/24 md5

# IPv4 local connections:
#host all all 127.0.0.1/32 md5
host all all 192.168.2.120 255.255.255.255 =
md5

# IPv4 local connections:
host all all 127.0.0.1/32 md5
host all all 192.168.2.120/24 md5

# IPv4 local connections:
host all all 127.0.0.1/32 md5
host all all 192.168.2.120 255.255.255.255 =
md5

I have a Symantec personal firewall installed which I turned off during =
testing.=20

The program runs fine on localhost.

Am using the Npgsql .NET library. The Npgsql.Npgsql.Open() call throws =
an exception, the error text of which is =
"System.Net.Sockets.SocketException: NO connection could be made because =
the target machine actively refused it."




------_=_NextPart_001_01C5C4B0.BE8ADBC5
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable



charset=3Diso-8859-1">




class=3D652314504-29092005>Try=20
disabling firewall. Because it may prevent any connections to your=20
machine.

class=3D652314504-29092005> 

class=3D652314504-29092005>Regards,

class=3D652314504-29092005>Mani


face=3DTahoma=20
size=3D2>-----Original Message-----
From:=20
pgsql-admin-owner@postgresql.org=20
[mailto:pgsql-admin-owner@postgresql.org]On Behalf Of Todd=20
Rockhold
Sent: Wednesday, September 28, 2005 1:03 =
PM
To:=20
pgsql-admin@postgresql.org
Subject: [ADMIN] Configure =
foreign host=20
for PostgreSQL 8.0.3 on WindowsXP

Installed =
PostgreSQL=20
8.0.3 on WindowsXP.  Have not been able to configure so that a =
client=20
program running on a different WindowsXP box can connect to the =
PostgreSQL=20
database.

As I understand the documentation, at least one of =
the=20
following configurations should work, but none do.  What have I =
done=20
wrong and how can I configure so that a connection can be successfully =

made?


1) The postgresql.conf file has (with everything else =
being=20
the installation default values):

listen_addresses =3D =
'*'

2)=20
None of the following configurations of the pg_hba.conf file worked =
(the=20
program runs on href=3D"http://192.168.2.120">192.168.2.120):

#=20
IPv4 local connections:
#host   =20
all        =20
all         =
href=3D"http://127.0.0.1/32">127.0.0.1/32    &nbs=
p;    =20
md5
host   =20
all         =
all   =20
        =
href=3D"http://192.168.2.120/24">192.168.2.120/24   &n=
bsp;  =20
md5

# IPv4 local connections:
#host   =20
all        =20
all         =
href=3D"http://127.0.0.1/32">127.0.0.1/32    &nbs=
p;    =20
md5
host   =20
all         =
all   =20
        href=3D"http://192.168.2.120">192.168.2.120 href=3D"http://255.255.255.255">255.255.255.255=20
      md5

# IPv4 local=20
connections:
host   =20
all        =20
all         =
href=3D"http://127.0.0.1/32">127.0.0.1/32    &nbs=
p;    =20
md5
host   =20
all         =
all   =20
     =
href=3D"http://192.168.2.120/24">192.168.2.120/24   &n=
bsp;  =20
md5

# IPv4 local connections:
host   =20
all        =20
all         =
href=3D"http://127.0.0.1/32">127.0.0.1/32    &nbs=
p;    =20
md5
host   =20
all         =
all   =20
        href=3D"http://192.168.2.120">192.168.2.120 href=3D"http://255.255.255.255">255.255.255.255=20
      md5

I have a Symantec personal =
firewall=20
installed which I turned off during testing.

The program runs =
fine on=20
localhost.

Am using the Npgsql .NET library.  The=20
Npgsql.Npgsql.Open() call throws an exception, the error text of which =
is=20
"System.Net.Sockets.SocketException: NO connection could be made =
because the=20
target machine actively refused =
it."



------_=_NextPart_001_01C5C4B0.BE8ADBC5--

Re: Configure foreign host for PostgreSQL 8.0.3 on WindowsXP

am 30.09.2005 05:27:31 von Todd Rockhold

------=_Part_594_24894728.1128050851417
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
Content-Disposition: inline

Thanks to all who responded. I'm a bit strapped for time now so I won't
publish a detailed analysis of what was wrong. Several of the suggestions
provided were helpful and more than one thing was wrong with my setup. The
program is working now on the client machine.

Thanks again for the help.

------=_Part_594_24894728.1128050851417
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
Content-Disposition: inline


Thanks to all who responded.  I'm a bit strapped for time now
so I won't publish a detailed analysis of what was wrong.  Several
of the suggestions provided were helpful and more than one thing was
wrong with my setup.  The program is working now on the client
machine.



Thanks again for the help.






------=_Part_594_24894728.1128050851417--