Re: ssl tunneling in postgres 8.1

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "P Kapat" <kap4lin(at)gmail(dot)com>
Cc: pgsql-novice(at)postgresql(dot)org
Subject: Re: ssl tunneling in postgres 8.1
Date: 2008-11-18 19:59:43
Message-ID: 24251.1227038383@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

"P Kapat" <kap4lin(at)gmail(dot)com> writes:
> I am reading the documentation from here:
> http://www.postgresql.org/docs/8.1/static/ssh-tunnels.html

> I am able to ssh (I use ssh keys) in to foo.com using the username
> joe. My client machine (localhost) is bar.com with username sam (say).

> bar$ ssh -L 3333:foo.com:5432 joe(at)foo(dot)com
> [this logs me into foo as joe; here i have access to a database named
> "joe" using the password "joepass"]

> So I try to connect to this local port (but remote server) by:

> bar$ psql -h localhost -p 3333 joe -U joe -W
> Password for user joe: joepass
> psql: server closed the connection unexpectedly
> This probably means the server terminated abnormally
> before or while processing the request.

> And on the remote ssh terminal I get the following error:

> foo$ channel 3: open failed: connect failed: Connection refused

> What am I doing wrong?

My bet is that you have the Postgres server configured so that it
only accepts Unix-socket connections and not local TCP connections
(which is what the SSH tunnel will try to connect to). If you do
"psql -h localhost" on the remote server, does it work?

If not, you need to fool with listen_addresses and possibly your
pg_hba.conf setup.

regards, tom lane

In response to

Responses

Browse pgsql-novice by date

  From Date Subject
Next Message P Kapat 2008-11-18 23:22:07 Re: ssl tunneling in postgres 8.1
Previous Message P Kapat 2008-11-18 14:38:49 Re: ssl tunneling in postgres 8.1