Re: I get a error msg when i try to connect to the DB

From: Brad Nicholson <bnichols(at)ca(dot)afilias(dot)info>
To: Rajaram J <rajarj(at)hotmail(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: I get a error msg when i try to connect to the DB
Date: 2007-08-16 16:05:47
Message-ID: 1187280347.29355.113.camel@bnicholson-desktop
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Thu, 2007-08-16 at 21:16 +0530, Rajaram J wrote:
> Hi
>
> I have installed PostGRESql 7.4.17 and when i try to connect to the db
> i get the msg
>
> psql: FATAL: no pg_hba.conf entry for host "???", user "sfmdb",
> database "LOGDB", SSL off
>
You are allowing local, non TCP/IP connctions, and connections through
the loop back, but you are not allowing remote conncetions. You need an
entry of some form that is

host all all ??? 255.255.255.255 trust

btw, trust is usually bad, you should use some form of authentication.

> My pg_hba.conf entry is as below
>
>
>
> # TYPE DATABASE USER IP-ADDRESS IP-MASK
> METHOD
>
> # Disable default configuration
>
> local all all
> trust
> # IPv4-style local connections:
> host all all 127.0.0.1 255.255.255.255
> trust
> # IPv6-style local connections:
> host all all ::1
> ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff trust
>
>
> can you please guide me on what the problem might be.
>
> Regards
>
> Rajaram
>
>
--
Brad Nicholson 416-673-4106
Database Administrator, Afilias Canada Corp.

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Ranjan Kumar Baisak 2007-08-16 16:06:24 Re: Function with Integer array parameter
Previous Message Trevor Talbot 2007-08-16 16:01:03 Re: Yet Another COUNT(*)...WHERE...question