Re: Connection refused (0x0000274D/10061)

Поиск
Список
Период
Сортировка
От Ray O'Donnell
Тема Re: Connection refused (0x0000274D/10061)
Дата
Msg-id 669cf8ed-877e-4420-3b60-f4e112ad8208@rodonnell.ie
обсуждение исходный текст
Ответ на Connection refused (0x0000274D/10061)  (Sourav Majumdar <souravmajumdar2002@gmail.com>)
Ответы Re: Connection refused (0x0000274D/10061)  (Sourav Majumdar <souravmajumdar2002@gmail.com>)
Список pgsql-general
On 09/06/2019 19:51, Sourav Majumdar wrote:
> 
>     could not connect to server: Connection refused (0x0000274D/10061)
>     Is the server running on host "localhost" (::1) and accepting TCP/IP
>     connections on port 5432? could not connect to server: Connection
>     refused (0x0000274D/10061) Is the server running on host "localhost"
>     (127.0.0.1) and accepting TCP/IP connections on port 5432?

Hi there,

 From the above, you have the server listening on port 3000 (you would 
have set this in postgresql.conf - did you?), but the client is trying 
to connect on port 5432 (the default).

You therefore need to tell the client to connect to port 3000 - if you 
are using psql, you need the -p option:

    psql -p 3000 (... etc ...)

HTH,

Ray.

-- 
Raymond O'Donnell // Galway // Ireland
ray@rodonnell.ie



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

Предыдущее
От: Adrian Klaver
Дата:
Сообщение: Re: Connection refused (0x0000274D/10061)
Следующее
От: Sourav Majumdar
Дата:
Сообщение: Re: Connection refused (0x0000274D/10061)