Обсуждение: default password for user postgres

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

default password for user postgres

От
Raphael Giovanini
Дата:
I`m change the default passwod, and not conect for this user. What the
default password?


Raphael Giovanini
+55-11-9938-6810
"O que pensais, passais a ser" (Gandhi)

Re: default password for user postgres

От
John R Pierce
Дата:
On 03/31/11 6:50 PM, Raphael Giovanini wrote:
> I`m change the default passwod, and not conect for this user. What the
> default password?

there is no default password.  on most unix and linux distributions, the
default authentication mode is set to 'ident' which means a given unix
user X can only connect as the postgres user X.   initially, the only
postgres user is 'postgres', so...

(assuming you're on the typical unix/linux system, you didn't say)

     $ sudo -u postgres psql

     postgres=> alter user postgres password 'apassword';
     postgres=> create user yerusername createdb createuser password
'somepass';
     postgres=> create database yerusername owner yerusername;
     postgres=> \q

     $ ...

now as your regular user 'yerusername' you can connect to postgres, and
have the privileges to create new users and databases.

That sequence also modified the postgres user's password in case you
change the default authentication method to md5 (this is set in
pg_hba.conf, see the documentation for more details)