Re: Real novice question: Roles

Поиск
Список
Период
Сортировка
От Jean-Yves F. Barbier
Тема Re: Real novice question: Roles
Дата
Msg-id 20111118162203.1726d2ec@anubis.defcon1
обсуждение исходный текст
Ответ на Real novice question: Roles  (Phil Dobbin <phildobbin@gmail.com>)
Ответы Re: Real novice question: Roles  (Phil Dobbin <phildobbin@gmail.com>)
Список pgsql-novice
On Fri, 18 Nov 2011 15:07:59 +0000
Phil Dobbin <phildobbin@gmail.com> wrote:

> sh-3.2# su postgres

su - postgres

> bash-3.2$ whoami
> _postgres
>
> bash-3.2$ /opt/local/lib/postgresql90/bin/postgres -D\
> > /opt/local/var/db/postgresql90/defaultdb
> LOG:  database system was shut down at 2011-11-18 03:19:30 GMT
> LOG:  autovacuum launcher started
> LOG:  database system is ready to accept connections
>
> `psql --help` tells me that I'm the default user (I'm the administrator of
> the machine) but after Googling for hours I can't create a role or create a
> database. I've followed the instructions in the PostgreSQL manual for this
> version of pgsql to the letter but no go.

psql defaultdb         (seems to be defaultdb from what you wrote)
defaultdb=# CREATE USER myuser WITH PASSWORD 'icanconnect';

Or from the bash command line:
bash-3.2$ su - postgres
bash-3.2$ createuser myuser -W

--
X-rated movies are all alike ... the only thing they leave to the
imagination is the plot.

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

Предыдущее
От: Phil Dobbin
Дата:
Сообщение: Real novice question: Roles
Следующее
От: Phil Dobbin
Дата:
Сообщение: Re: Real novice question: Roles