I have a PostgreSQL server setup on Box A. I want to connect to the server from Box B using psql. What do I need to install on Box B? I can't find a client installation binary for PostgreSQL. Or do I have to install the entire PostgreSQL distribution?
feedback
|
|
On Debian the package you are looking for is called | |||||||
feedback
|
|
Also note that if there is untrusted network between a database server and a client, then it's recommended to use SSL connection (hostssl method in pg_hba.conf). Another way to connect to DB server is to use ssh (maybe with its SSL) to connect Box A, and then use psql from there. In such case you don't need to change listen_adresses property (default value is localhost) from postgresql.conf. | ||||
|
feedback
|