Re: could not bind IPv4 socket - Mailing list pgsql-general

From Grzegorz Buś
Subject Re: could not bind IPv4 socket
Date
Msg-id 000301c9cc21$907084d0$b1518e70$@org
Whole thread Raw
In response to Re: could not bind IPv4 socket  (Greg Smith <gsmith@gregsmith.com>)
Responses Re: could not bind IPv4 socket
Re: could not bind IPv4 socket
List pgsql-general
> listen_addresses gets set to the IP address of the server itself, the
> IP address it is "listening" for input on.  Since you're giving it a
> remote address, that's why it can't create a socket to listen there.

> There is a second file here, pg_hba.conf, that filters down who can
> connect to the database.  Normal practice here is to set:

> listen_address='*'

OK. My settings now are following:

# cat postgresql.conf | grep listen
listen_addresses = 'localhost,*'        # what IP address(es) to listen on;

I did restart postgresql service, but problem still persists:

# rm /var/lib/pgsql/data/pgstartup.log
rm: remove regular file `/var/lib/pgsql/data/pgstartup.log'? y # service
postgresql restart
Stopping postgresql service:                               [  OK  ]
Starting postgresql service:                               [  OK  ]
# cat /var/lib/pgsql/data/pgstartup.log
LOG:  could not bind IPv4 socket: Address already in use
HINT:  Is another postmaster already running on port 5432? If not, wait a
few seconds and retry.

Local apps can still connect to the postgresql server - but remote can't.

> So that the server is remotely accessible from all of its interfaces,
> and then you can do all filtering of who can connect just via pg_hba.conf
instead.
> See http://www.postgresql.org/docs/8.3/static/auth-pg-hba-conf.html for
more information.

I know - after upgrading PostgreSQL from version 7.4 (which allowed remote
connections) to 8.3 I copied settings from old pg_hba.conf.

--
Kind Regards,
Grzegorz Bus


pgsql-general by date:

Previous
From: Scott Marlowe
Date:
Subject: Re: keeping track of function execution
Next
From: Adrian Klaver
Date:
Subject: Re: could not bind IPv4 socket