Обсуждение: Pgadmin connection

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

Pgadmin connection

От
"Marcio Aquino"
Дата:
Hi!
Please, how do I connect pgadmin II to Postgresql under Windows and cygwin, at the same machine (localhost)?
Thanks!
 

Re: Pgadmin connection

От
"Donald Fraser"
Дата:
----- Original Message -----
>From: Marcio Aquino
>To: pgadmin-support@postgresql.org
>Sent: Thursday, September 25, 2003 8:28 PM
>Subject: [pgadmin-support] Pgadmin connection


>Hi!
>Please, how do I connect pgadmin II to Postgresql under Windows and cygwin, at
the same machine (localhost)?
>Thanks!


Set tcpip_socket = true in the postgresql.conf file.
Under the connect to server dialog, enter 127.0.0.1 into the Server entry box,
enter 5432 into the Port entry box, enter your user name and password into the
other appropriate entry boxes according to how you initialised the database.
You can avoid using a password if you have a line in the pg_hba.conf file as
follows:

host all all 127.0.0.1 255.255.255.255 trust

Regards
Donald Fraser