Re: grant database access - Mailing list pgsql-novice

From Carlo Ascani
Subject Re: grant database access
Date
Msg-id 20110905104528.519f1e4d@2ndquadrant.it
Whole thread Raw
In response to grant database access  (e-letter <inpost@gmail.com>)
List pgsql-novice
On Mon, 5 Sep 2011 09:04:47 +0100
e-letter <inpost@gmail.com> wrote:

> Readers,
>
> I have inherited a m$ pc with postgresql83 installed. Have tried to
> create a new database using pgadminiii but received the error:
>
> Access to database denied
> The server doesn't grant access to the database: the server reports
> FATAL: no pg_hba.conf entry for host "127.0.0.1", user "postgresr",
> database "postgres", SSL off
> To access a database on a PostgreSQL server, you first have to grant
> primary access to the server for your client (Host Based
> Authentication). PostgreSQL will check the pg_hba.conf file if a
> pattern that matches your client address / username / database is
> present and enabled before any SQL GRANT access control lists are
> evaluated.
> The pghbaconf file contains:
>
> # TYPE  DATABASE    USER        CIDR-ADDRESS          METHOD
>
> # IPv4 local connections:
> local     all     all          trust
> # IPv6 local connections:
> #host    all         all         ::1/128               md5
>
> Any advice please?

I assume that "postgresr" as a username is a cut&paste mistake.

As the message said, you have to add a proper hba entry to let the user
"postgres" connect to the server.

You can try and temporarily add a row like this to your pg_hba.conf:

host    postgres         postgres         127.0.0.1/32          trust

Remember to reload the server. I really advice you to read carefully
the documentaion about pg_hba.conf for your postgres version, you can
find it at:
http://www.postgresql.org/docs/8.3/static/auth-pg-hba-conf.html

Cheers

--
 Carlo Ascani - 2ndQuadrant Italia
 PostgreSQL Training, Services and Support
 carlo.ascani@2ndQuadrant.it - www.2ndQuadrant.it

pgsql-novice by date:

Previous
From: e-letter
Date:
Subject: grant database access
Next
From: Eric Hulburd
Date:
Subject: getting started with psql