Re: Missing or erroneus pg_hba.conf file

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Missing or erroneus pg_hba.conf file
Дата
Msg-id 26913.1087736677@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Missing or erroneus pg_hba.conf file  (Sandro Ribeiro - Claro RS - <Sandro.Ribeiro@claro.com.br>)
Список pgsql-admin
Sandro Ribeiro - Claro RS - <Sandro.Ribeiro@claro.com.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

В списке pgsql-admin по дате отправления:

Предыдущее
От: jseymour@linxnet.com (Jim Seymour)
Дата:
Сообщение: Re: Missing or erroneus pg_hba.conf file
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Debugging SQL Statements from *any* client(s)