Re: Missing or erroneus pg_hba.conf file

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Sandro Ribeiro - Claro RS - <Sandro(dot)Ribeiro(at)claro(dot)com(dot)br>
Cc: pgsql-admin(at)postgresql(dot)org
Subject: Re: Missing or erroneus pg_hba.conf file
Date: 2004-06-20 13:04:37
Message-ID: 26913.1087736677@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

Sandro Ribeiro - Claro RS - <Sandro(dot)Ribeiro(at)claro(dot)com(dot)br> writes:
> My server is working with pgsql 7.4.2 and Unix Solaris 8.
> [ this pg_hba.conf line doesn't work: ]
> host all all 127.0.0.1 255.255.255.255 trust

We've seen some reports suggesting that Solaris has a problem with the
all-ones netmask. You could probably get it to work either by
loosening the netmask a little:

host all all 127.0.0.1 255.255.255.0 trust

or by using CIDR style:

host all all 127.0.0.1/32 trust

regards, tom lane

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Tom Lane 2004-06-20 13:07:59 Re: Debugging SQL Statements from *any* client(s)
Previous Message Jim Seymour 2004-06-20 12:04:15 Re: Missing or erroneus pg_hba.conf file