Re: Doubt with role creation

From: Manuel Rivero <trikitrok(at)gmail(dot)com>
To: Thom Brown <thom(at)linux(dot)com>
Cc: pgsql-novice(at)postgresql(dot)org
Subject: Re: Doubt with role creation
Date: 2010-10-18 14:53:24
Message-ID: AANLkTimqQsOuH7FJY5pFW31TmpCP=BVMyv89hHh54MO_@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

On Mon, Oct 18, 2010 at 4:46 PM, Thom Brown <thom(at)linux(dot)com> wrote:

> On 18 October 2010 15:39, Manuel Rivero <trikitrok(at)gmail(dot)com> wrote:
> > Hi
> >
> > First of all, thank you very much for your answer..
> >
> > I followed your advise and changed the pg_hba.conf to use of md5 instead
> of
> > ident.
> >
> > Now I don't get that error,but I'm afraid I'm getting a different one..
> >
> > This is what I did after changing pg_hba.conf:
> >
> > CREATE ROLE db_admin LOGIN PASSWORD 'dbAdmin' CREATEDB CREATEROLE
> > NOSUPERUSER;
> > CREATE ROLE
> > postgres=# \q
> >
> > Now when I try to to login
> > postgres(at)linux-2dqb:> psql -U db_admin -W
> > Contraseña para usuario db_admin:
> > psql: FATAL: no existe la base de datos «db_admin»
> >
> > Traslated:
> > psql: FATAL: the database «db_admin» does not exist
> >
> > Why is it necessary to have a database for a new user?
> >
> > I just wanted to have a user different to postgres to work with.
>
> Hi Manuel,
>
> (Please use "Reply to all" when replying as the list should be copied
> back in so everyone can see your response. And try to put your
> responses below the message you're replying to.)
>
> By default, psql will attempt to connect to a database with the same
> name as a user. This obviously isn't what you want in this case, so
> you need to specify the database name:
>
> psql -U db_admin -W your_database
>
> So the database name appears as the last parameter, or you can use "-d
> your_database" instead if it helps make it clearer.
>
> Regards
>
> Thom Brown
> Twitter: @darkixion
> IRC (freenode): dark_ixion
> Registered Linux user: #516935
>

Hi

It's working now. Thank you very much!

Regards,
M

In response to

Browse pgsql-novice by date

  From Date Subject
Next Message Jeff Langley 2010-10-18 20:06:12 database access
Previous Message Thom Brown 2010-10-18 14:46:25 Re: Doubt with role creation