2006/7/3, A. Kretschmer <andreas.kretschmer@xxxxxxxxxxxxxx>:
am 03.07.2006, um 10:25:29 -0300 mailte Clodoaldo Pinto folgendes: > $conn_string = "hostaddr=127.0.0.1 port=5432 dbname=dbname ^^^^^^^^^ > I can connect as that user with psql: > > $ psql -h localhost -U username dbname ^^^^^^^^^ Try 'localhost' instead '127.0.0.1' in your $conn_string.
As I already said I have tried localhost also.
My guess: pg don't listen on tcp/ip, only on the local socket. (check listen_addresses in your postgresql.conf)
listen_addresses = '127.0.0.1,xx.xx.xxx.xx' If I can connect with the -h localhost psql's option then I guess it is listening to tcp/ip, isn't it? Clodoaldo