Re: strange behavior of pg_hba.conf file

From: Adrian Klaver <adrian(dot)klaver(at)aklaver(dot)com>
To: Atul Kumar <akumar14871(at)gmail(dot)com>, pgsql-general <pgsql-general(at)lists(dot)postgresql(dot)org>
Subject: Re: strange behavior of pg_hba.conf file
Date: 2023-11-22 16:25:23
Message-ID: 947a953a-e2ab-497e-9381-6abaf0796560@aklaver.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 11/22/23 08:21, Atul Kumar wrote:
> Hi,
>
> I have postgres 12 running in centos 7, recently I changed the
> authentication of entries of pg_hba.conf to scram-sh-256 for localhost.
>
> Since then I have started getting the below error:
>
> no pg_hba.conf entry for host "::1", user "postgres", database "postgres

The host is ::1 which IPv6 and your pg_hba.conf entry below is for IPv4.
You need to add IPv6 line.

>
>
>
>
> The entry of pg_hba.conf is like below:
>
> # TYPE  DATABASE USER ADDRESS METHOD
>
> # "local" is for Unix domain socket connections only
>
> local all all                                          scram-sha-256
>
> # IPv4 local connections:
>
> host all postgres 127.0.0.1/32 <http://127.0.0.1/32> scram-sha-256
>
>
>
> What I am missing here, please suggest.
>
>
>
>
> Regards,
>
> Atul
>

--
Adrian Klaver
adrian(dot)klaver(at)aklaver(dot)com

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Adrian Klaver 2023-11-22 16:37:10 Re: pg_restore enhancements
Previous Message Ron Johnson 2023-11-22 16:25:20 Re: strange behavior of pg_hba.conf file