How do I create a postgresql user and database from a fresh install?

0

I just installed postgresql onto an ubuntu box.

How can I create user foo with password bar and database baz, so that foo owns baz? foo is not a unix user.

user13798

Posted 2010-06-11T03:33:32.297

Reputation: 361

Answers

1

CREATE ROLE foo WITH ENCRYPTED PASSWORD 'bar';
CREATE DATABASE baz OWNER foo;

Don't forget to modify pg_hba.conf to allow foo to connect with the md5 method.

Ignacio Vazquez-Abrams

Posted 2010-06-11T03:33:32.297

Reputation: 100 516