Re: Connecting to PostgreSQL server

Поиск
Список
Период
Сортировка
От Michael Wood
Тема Re: Connecting to PostgreSQL server
Дата
Msg-id BANLkTikfydVAH2LOw+U==FNbxkArGii83A@mail.gmail.com
обсуждение исходный текст
Ответ на Connecting to PostgreSQL server  (Daniel Weitzenfeld <dweitzenfeld@gmail.com>)
Список pgsql-novice
On 30 June 2011 04:07, Daniel Weitzenfeld <dweitzenfeld@gmail.com> wrote:
> Hi,
> I have a remote server with PostgreSQL on it.
> When I try to connect via python/pygresql, I get:
>
> pg.InternalError: could not connect to server: Connection refused
>     Is the server running on host "##.##.##.###" and accepting
>     TCP/IP connections on port 5432?
>
> Where I've blanked out my server's ip address for obvious reasons.
>
> I ssh'd to my server and did this to iptables:
>
> iptables -A INPUT -p tcp --dport 5432 -j ACCEPT
>
> restarted iptables, but still no dice.
>
> Any advice?

First answer the question you got when you tried to connect :)  Is
PostgreSQL listening on port 5432 on the external IP address you were
trying to connect to?

The chances are it was either not listening for TCP connections at
all, or only on 127.0.0.1.

Try running "netstat -tln | grep 5432" and see what you get.

--
Michael Wood <esiotrot@gmail.com>

В списке pgsql-novice по дате отправления:

Предыдущее
От: Odd Hogstad
Дата:
Сообщение: Re: Order-by and indexes
Следующее
От: "mark"
Дата:
Сообщение: Re: Locking out a user after several failed login attempts