Please would you help me diagnose my PostgreSQL 14 installation on Ubuntu Ubuntu 22.04.1 LTS. I cannot connect to it with pgAdmin 4 on my windows 11 laptop (192.168.1.67).
The full error is
Unable to connect to server: connection to server at '192.168.1.145', port 5432 failed: timeout expired
I have made the following file changes and checked status commands:-
ufw status ` Thanks
Lee
CodePudding user response:
The 255.255.255.0
netmask in the pg_hba.conf file is wrong, you're specifying a single IP 192.168.1.67
, not all IPs in the 192.168.1.xxx
subnet.
The pg_hba entry should be 192.168.1.67 255.255.255.255
or 192.168.1.67/32