From: | "Joshua D(dot) Drake" <jd(at)commandprompt(dot)com> |
---|---|
To: | Rob Tanner <rtanner(at)linfield(dot)edu> |
Cc: | pgsql-general(at)postgresql(dot)org |
Subject: | Re: I've compiled and installed -- what next? |
Date: | 2007-01-12 23:02:25 |
Message-ID: | 45A81381.3060200@commandprompt.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
Rob Tanner wrote:
> Hi,
>
> I've compiled and installed v8.2.1 to use in conjunction with the Xythos
> document management system. My problem is getting from home to first
> base. I normally live in a MySql world and the first thing I do after
> installing the DBMS is set the "root" or superuser password. The PDF
> documentation talks about the superuser and database owner(s). How do I
> define the superuser and then secure that user with a password?
Hail fellow user from Oregon :)
The default superuser for PostgreSQL is going to be the linux/unix user
that you used the command initdb with. By default when you initdb in
PostgreSQL (when you compile from source) it will allow any unix user to
connect. Thus you can do this:
psql -U <postgres user> template1
That will get you into your database (assuming it is running). Once
there you can use CREATE ROLE and ALTER ROLE to set respective passwords.
To get help use the following:
\h CREATE ROLE
\h ALTER ROLE
Sincerely,
Joshua D. Drake
>
> Thanks,
> Rob
>
--
=== The PostgreSQL Company: Command Prompt, Inc. ===
Sales/Support: +1.503.667.4564 || 24x7/Emergency: +1.800.492.2240
Providing the most comprehensive PostgreSQL solutions since 1997
http://www.commandprompt.com/
Donate to the PostgreSQL Project: http://www.postgresql.org/about/donate
PostgreSQL Replication: http://www.commandprompt.com/products/
From | Date | Subject | |
---|---|---|---|
Next Message | Simon Riggs | 2007-01-12 23:36:30 | Re: Autovacuum Improvements |
Previous Message | Alvaro Herrera | 2007-01-12 22:33:05 | Re: Autovacuum Improvements |