Re: Can't connect to 7.4 DB

Поиск
Список
Период
Сортировка
От scott.marlowe
Тема Re: Can't connect to 7.4 DB
Дата
Msg-id Pine.LNX.4.33.0402120827550.4413-100000@css120.ihs.com
обсуждение исходный текст
Ответ на Can't connect to 7.4 DB  (Michael Hanna <taojones@sympatico.ca>)
Ответы Re: Can't connect to 7.4 DB
Список pgsql-php
OK, here's a little trick you may not be aware of.

pg_connect("dbname=mydb user=stan");

will open a local unix domain socket.

pg_connect("host=127.0.0.1 dbname=mydb user=stan");

will open a local TCP/IP connection on the loopback interface.

In order for this to work, your postgresql.conf must have this line
changed:
#tcpip_socket = false
to
tcpip_socket = true

and your pg_hba.conf needs a line like this:

host    all         all         127.0.0.1         255.0.0.0   trust

So it's likely the "secure by default" mentality of postgresql that's
biting you here.


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

Предыдущее
От: Michael Hanna
Дата:
Сообщение: Can't connect to 7.4 DB
Следующее
От: Joshua Drake
Дата:
Сообщение: Re: Can't connect to 7.4 DB