It sounds like you have everything setup correctly. I'd try using psql on the client. it will give you more insight as to where the failure may be. The basic syntax to connect is
- Code: Select all
psql -h <IPaddress> -U postgres
It should prompt for a password.
If you connect you can try the
- Code: Select all
\l+
command. it will list the databases. At that point you should see your Resolve database(s).
If it fails somewhere along the way, hopefully there will be some useful information to tell you what's going on.
Alternately you can probe the port with nmap:
- Code: Select all
nmap -sS -p5432 <IPaddress>
it will echo "5432/tcp open postgresql" if the port is open and the DB server is listening on it.