BUG #15508: Not able to connect irrespective of valid entries in pg_hba.conf

From: PG Bug reporting form <noreply(at)postgresql(dot)org>
To: pgsql-bugs(at)lists(dot)postgresql(dot)org
Cc: yogesh(dot)jadhav(at)gmail(dot)com
Subject: BUG #15508: Not able to connect irrespective of valid entries in pg_hba.conf
Date: 2018-11-15 07:03:29
Message-ID: 15508-4f247f02568dbf5f@postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

The following bug has been logged on the website:

Bug reference: 15508
Logged by: Yogesh Jadhav
Email address: yogesh(dot)jadhav(at)gmail(dot)com
PostgreSQL version: 11.1
Operating system: Windows 10
Description:

I am trying to connect a Postgres database which resides in a docker
installed on Ubuntu virtual machine. Following exception is being thrown on
the console.

org.postgresql.util.PSQLException: FATAL: no pg_hba.conf entry for host
"10.1.X.X", user "usrXXX", database "dbXXX", SSL off

After going through various posts, I realised that I have to update
pg_hba.conf file. I have modified the file to include the following
settings.

host dbXXX usrXXX 10.1.X.X/32 trust

*(Note I tried with md5 as well.)*

I verified the postgres database settings through `psql` and executed
commands as specified in this
post(https://dba.stackexchange.com/questions/161104/pgadmin-postgresql-no-pg-hba-conf-entry-for-host).
This verified that I am editing correct file. To take a step further, I also
verified the entry through pgAdmin (*pgAdmin is installed locally on
postgres host*) and found the following query is returning records as
entered in pg_hba.conf

table pg_hba_file_rules;

You can get the images about infrastructure and pgAdmin query results at
following URL.

https://dba.stackexchange.com/questions/222602/not-able-to-connect-to-postgre-database-no-pg-hba-conf-entry-for-host

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message David G. Johnston 2018-11-15 07:08:37 Re: BUG #15508: Not able to connect irrespective of valid entries in pg_hba.conf
Previous Message Derek Nelson 2018-11-15 03:27:39 Re: Tables created WITH OIDS cannot be dumped/restored properly