Answers for "dbeaver error no pg_hba.conf entry for host "10.100.254.118""

2

django.db.utils.operationalerror: fatal: no pg_hba.conf entry for host

You obviously do not have connection profile for user "user1" against 
database "ttio" on the machine. The only remote access that your 
pg_hba.conf currently specifies is for any user to the database with 
the same name as the user from address 127.0.0.200.

You need an entry like:

host ttio user1 <ip_address> <netmask>


The <ip_address> <netmask> combination is specific to your network 
configuration and refers to the IP address of the client.
Posted by: Guest on March-15-2021
0

no pg_hba.conf entry for host SSL off

listen_addresses = '*'
/etc/init.d/postgresql restart
Posted by: Guest on April-20-2021

Code answers related to "dbeaver error no pg_hba.conf entry for host "10.100.254.118""

Browse Popular Code Answers by Language