Обсуждение: pgaccess problem....

Поиск
Список
Период
Сортировка

pgaccess problem....

От
"Alejandro Vargas M."
Дата:
I have problems with pgaccess.

I configured the postgresql.conf with tcpip_socket = true and port =
5432.

After that I configured pg_hba.conf

host all all 127.0.0.1 255.255.255.255 trust

I restart the postgresql service and started perfect.

I open the connection, then It opens very well at localhost, opens the
database, but, when I try to see the tables, it's like their not exists.
I don't know, what's wrong. I can see them at psql, but in pgaccess, I
can't.

Please Help Me.

Thank you.




Re: pgaccess problem....

От
Bruno Wolff III
Дата:
On Tue, Aug 26, 2003 at 16:35:31 -0400, "Alejandro Vargas M." <avargas@sgocostarica.com> wrote:
> I have problems with pgaccess.
> 
> I configured the postgresql.conf with tcpip_socket = true and port =
> 5432.
> 
> After that I configured pg_hba.conf
> 
> host all all 127.0.0.1 255.255.255.255 trust
> 
> I restart the postgresql service and started perfect.
> 
> I open the connection, then It opens very well at localhost, opens the
> database, but, when I try to see the tables, it's like their not exists.
> I don't know, what's wrong. I can see them at psql, but in pgaccess, I
> can't.

Are you running pgaccess from the local host?
Are you connecting to the loopback address (127.0.0.1) and not an external IP?

psql probably is conecting using domain sockets instead of using a network
connection, which could explain why it works and pgaccess doesn't.