From: | "Devinder K Rajput" <Devinder(dot)Rajput(at)ipaper(dot)com> |
---|---|
To: | "Graham Bartlett" <gbartlett(at)gamet(dot)com> |
Cc: | pgsql-novice(at)postgresql(dot)org, pgsql-novice-owner(at)postgresql(dot)org |
Subject: | Re: Problem connecting to postgres |
Date: | 2002-12-11 19:55:45 |
Message-ID: | OF8735289E.59610F5A-ON86256C8C.006CEA90@ipaper.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-novice |
If you are on 7.3x, this should work:
host all all trust
host all all 127.0.0.1 255.255.255.255 trust
host all all 10.1.1.0 255.255.255.0 trust
on earlier versions:
host all trust
host all 127.0.0.1 255.255.255.255 trust
host all 10.1.1.0 255.255.255.0 trust
hth,
Devinder
"Graham Bartlett"
<gbartlett(at)gamet(dot)com> To: pgsql-novice(at)postgresql(dot)org
Sent by: cc:
pgsql-novice-owner(at)pos Subject: [NOVICE] Problem connecting to postgres
tgresql.org
12/11/2002 01:37 PM
After installing Postgres I tried to make a connection to the DB. I made
sure to use the '-i' to enable JDBC connection. I'm receiving the
following error:
"No pg_hba.conf entry for host 10.1.1.79, user gpms, database gpms"
I have created the gpms user and gpms database. I can connect to the
database only when I add:
host all 10.1.1.79 255.255.255.255 trust
to the pg_hba.conf file.
I never had to do this before. I simply want to enable all IPs to
connect to the database without specifying every one of those IPs in the
pg_hba.conf file. How do I do this?
Thanks!
---------------------------(end of broadcast)---------------------------
TIP 3: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to majordomo(at)postgresql(dot)org so that your
message can get through to the mailing list cleanly
From | Date | Subject | |
---|---|---|---|
Next Message | Wim | 2002-12-11 20:48:33 | Re: Problem connecting to postgres |
Previous Message | Graham Bartlett | 2002-12-11 19:37:55 | Problem connecting to postgres |