one)
drm@test:~$ sudo netstat -antup | grep 5432 tcp 0 0 0.0.0.0:5432 0.0.0.0:* LISTEN 29926/postgres tcp6 0 0 :::5432 :::* LISTEN 29926/postgres
but after adding your IP address to pg_hba and restarting the server
# IPv4 local connections: host all all 127.0.0.1/32 md5 host all all 192.168.36.21 md5
getting empty
drm@test:~$ sudo systemctl restart postgresql drm@test:~$ sudo netstat -antup | grep 5432 drm@test:~$
those. the server is not listening and there is no possibility to connect from a remote computer
192.168.36.21
- the network mask is not specified here. try to add. - Pavel