I have a problem to connect server for Postgres after I updated my windows.Before I update there is no problem to open the database. My database in Postgres also gone. When I wa
There are two items to configure if your server isn't on localhost:
postgresql.conf
and add your server's public IP address to the end of the setting listen_addresses
(separate multiple entries by commas); uncomment the line if it is commented out (e.g. with '#')pg_hba.conf
containing your client's IP address - you may copy the line containing 127.0.0.1 and change only the IP addressOn Ubuntu, these files are in /etc/postgresql/
.