From: | "Shoaib Mir" <shoaibmir(at)gmail(dot)com> |
---|---|
To: | pgsql-general(at)postgresql(dot)org |
Subject: | Re: server administration problem: Database startup and permissions |
Date: | 2006-07-27 21:25:11 |
Message-ID: | bf54be870607271425v5e7c761fp798457b743b4fd52@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
This is because in the pgadmin3 server settings for PostgreSQL database you
did set the user as 'postgres' (default behavior) and never changed it. Now
as you did run the 'initdb' process with user 'jsbali' so that is the user
which exists in the database not the 'postgres' user. So the solution for
that will add the user 'jsbal' in your pgadmin3 server settings instead of
'postgres' and then try connecting from pgadmin3.
Thanks,
--
Shoaib Mir
EnterpriseDB (www.enterprisedb.com)
On 7/28/06, Jasbinder Bali <jsbali(at)gmail(dot)com> wrote:
>
> Hi,
>
> I created a database cluster using the following commands as per what is
> given in the postgres server administration manual
>
> root# mkdir /usr/local/pgsql/jas
> root# chown jsbali /usr/local/pgsql/jas
> root# su jsbali
> jsbali# initdb -D /usr/local/pgsql/jas
>
> After that i tried to start up the postmaster process using the follwing
> command
>
> jsbali# pg_ctl start -D /usr/local/pgsql/jas
>
> It does start the postmaster process.
>
> Then i create a new database here using the following command
>
> jsbali# createdb DBxyz
>
> here in the same user account i try to open pgadmin3 and it doens't
>
> I open pgadmin3 from the root account and try to connect to my local host
> and it says
>
> An error has occured:
> Error connecting to the server: FATAL: role "postgres" does not exist
>
>
> Don't know whats going on wrong.
> I'm totally confused.
>
>
> ~Jas
>
>
>
From | Date | Subject | |
---|---|---|---|
Next Message | Martijn van Oosterhout | 2006-07-27 21:37:19 | Re: UTF-8, upper() and Chinese characters yielding blank result |
Previous Message | Shoaib Mir | 2006-07-27 21:17:51 | Re: Permissions to connect to postgres database |