Re: How to connect to the database server

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: How to connect to the database server
Дата
Msg-id 3991.1211485804@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: How to connect to the database server  (guillaume.yziquel@free.fr)
Список pgsql-novice
guillaume.yziquel@free.fr writes:
> Doing su - postgres and psql yields:

>> postgres@seldon:~$ psql
>> psql: FATAL:  La base de donn�es � postgres � n'existe pas
>> postgres@seldon:~$

> Seems like I need to know what are the databases inside my cluster...

"psql -l" would tell you, though I bet the answers is "template1".
What you probably want to do is "psql template1" as postgres,
then create some users corresponding to the Unix accounts you
normally want to connect from.

You might also want to change the default authentication mode,
which is probably "ident" right now.  Depending on what you're
doing, it might be better to give all the users passwords and
switch to md5 (ie, password) auth.

BTW, if the PG version doesn't create database "postgres" by
default, that means it's old enough to be obsolete.

            regards, tom lane

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

Предыдущее
От: "Greg Cocks"
Дата:
Сообщение: Re: How to connect to the database server
Следующее
От: guillaume.yziquel@free.fr
Дата:
Сообщение: Re: How to connect to the database server