pg_hba do not work according to the settings

1.3k Views Asked by At

I am running postgresql 10 at ubuntu 18 host in Digital Ocean.

This is my pg_hba.conf file:

# Database administrative login by Unix domain socket
local   all             postgres                                peer

# TYPE  DATABASE        USER            ADDRESS                 METHOD

# "local" is for Unix domain socket connections only
local   all             all                                     peer

# IPv4 local connections:
host    all             all             127.0.0.1/32            md5
local   all             postgres                                peer

# TYPE  DATABASE        USER            ADDRESS                 METHOD

# "local" is for Unix domain socket connections only
local   all             all                                     peer

# IPv4 local connections:
host    all             all             127.0.0.1/32            md5
host    all             all             0.0.0.0/0               md5
#host all postgres 127.0.0.1/32 md5
# IPv6 local connections:
host    all             all             ::1/128                 md5
# Allow replication connections from localhost, by a user with the
# replication privilege.
local   replication     all                                     peer
host    replication     all             127.0.0.1/32            md5
host    replication     all             ::1/128                 md5
host    all             all             0.0.0.0/0               md5

this is log file after restart

2019-09-06 02:49:05.213 UTC [3334] LOG:  database system is ready to accept connections
2019-09-06 02:49:05.743 UTC [3342] [unknown]@[unknown] LOG:  incomplete startup packet
2019-09-06 02:49:17.164 UTC [3367] postgres@postgres FATAL:  pg_hba.conf rejects connection for host "192.X.X.2", user "postgres", database "postgres", SSL on
2019-09-06 02:49:17.232 UTC [3368] postgres@postgres FATAL:  pg_hba.conf rejects connection for host "192.X.X.2", user "postgres", database "postgres", SSL off

My postgres.conf file

data_directory = '/var/lib/postgresql/10/main'        
hba_file = '/etc/postgresql/10/main/pg_hba.conf'      
listen_addresses = '*'  

I tried postgresql restart, reload, and system reboot. It do not reflect according to the pg_hba.conf file.

At the settings above, I also try with localhost

psql -c 'SELECT version()' -h 127.0.0.1 -U postgres

It still fails to connect

It only works with

PSQL:
0

There are 0 best solutions below