Answers for "no pg_hba.conf entry for host "72.252.32.51""

PHP
1

no pg_hba.conf entry for host user database ssl off

Add or edit the following line in your postgresql.conf :

listen_addresses = '*'
Add the following line as the first line of pg_hba.conf. It allows access to all databases for all users with an encrypted password:

# TYPE DATABASE USER CIDR-ADDRESS  METHOD
host  all  all 0.0.0.0/0 md5
Restart Postgresql after adding this with service postgresql restart or the equivalent command for your setup.
Posted by: Guest on March-25-2021
0

vagrant no pg_hba.conf entry for host

host  all  all 0.0.0.0/0 md5
Posted by: Guest on January-04-2021

Code answers related to "no pg_hba.conf entry for host "72.252.32.51""

Browse Popular Code Answers by Language