grant database access

From: e-letter <inpost(at)gmail(dot)com>
To: pgsql-novice(at)postgresql(dot)org
Subject: grant database access
Date: 2011-09-05 08:04:47
Message-ID: CAET1fe64_-mnJuEy+=f5V2zAJ0BHRDkoF3xfqkyLREVb11WKmw@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

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?

Responses

Browse pgsql-novice by date

  From Date Subject
Next Message Carlo Ascani 2011-09-05 08:45:28 Re: grant database access
Previous Message Steve Crawford 2011-09-02 19:20:54 Re: moving CSV data into table?