Re: default password for user postgres

Lists: pgsql-bugs
From: Raphael Giovanini <raphaelgiovanini(at)gmail(dot)com>
To: pgsql-bugs(at)postgresql(dot)org
Subject: default password for user postgres
Date: 2011-04-01 01:50:34
Message-ID: AANLkTimK=49C+jKc8mKMCwPpUuThXyW3nhOHucHrWEWY@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-bugs

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)


From: John R Pierce <pierce(at)hogranch(dot)com>
To: pgsql-bugs(at)postgresql(dot)org
Subject: Re: default password for user postgres
Date: 2011-04-01 08:17:57
Message-ID: 4D958A35.8030501@hogranch.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-bugs

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)