You can connect to your PostgreSQL Server remotely by filling in the information below under General tab.
- Host Name/IP Address: IP of Remote PostgreSQL Server
- Port: 5432
- Initial Database: Initial database you connect to when making connection (template1 as default)
- User Name: Your Username (postgres as default)
- Password: Your Password (<blank> as default)
If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol SSH / HTTP is another solution.
Note: For security reasons native remote direct connections to the PostgreSQL server are disabled. Therefore, you may not be able to use Navicat or other similar PostgreSQL admin applications running on your computer to connect to the remote server. For more details, refer to next paragraph on Server Administration.
For Server Administration:
By default, PostgreSQL only allows connections from the local machine using TCP/IP connections. Other machines will not be able to connect unless you modify listen_addresses in the postgresql.conf file, enable host-based authentication by modifying the $PGDATA/pg_hba.conf file, and restart the server.
For more information: Client Authentication
See also:
General Settings for PostgreSQL
Related topics:
Manage Users