What we have to do is ssh into a machine at the office, then use a tunnel over
ssh to forward a port to the database.
Example:
ssh -L5432:dbmachine:5432 username@site.com
Then connect using:
psql -h localhost -p 5432 -d dbname -U username
Tom
On Fri, Aug 23, 2002 at 04:46:55PM +0530, Uday wrote:
> How can I connect to a remote PG database from my office theu a proxy in my office.
>
> Regards
> -Uday