Re: Cannot connect to postgresql on port 5432

From: Ron <ronljohnsonjr(at)gmail(dot)com>
To: pgsql-admin(at)lists(dot)postgresql(dot)org
Subject: Re: Cannot connect to postgresql on port 5432
Date: 2019-12-23 19:39:13
Message-ID: 64689969-f920-cc61-479d-f1c2925d7ff2@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin


What's the value of listen_addresses?

postgres=# show listen_addresses;
 listen_addresses
------------------
 localhost
(1 row)

You probably need to edit postgresql.conf and change listen_addresses from
'localhost' to the IP addresses they need to listen to.

And, of course, make sure the firewall allows bi-directional port 5432
between the relevant hosts.

On 12/23/19 1:30 PM, soumik(dot)bhattacharjee(at)kpn(dot)com wrote:
>
> Hi Experts,
>
> Post installation of  PostgreSQL it is not listening on an IP, only on
> localhost.
>
> Please suggest your inputs.
>
> *_Used below command for installations –_*
>
> *# apt-get install postgresql-12*
>
> postgres=# select version();
>
> version
>
> ------------------------------------------------------------------------------------------------------------------
>
> PostgreSQL 12.1 (Debian 12.1-1.pgdg100+1) on x86_64-pc-linux-gnu, compiled
> by gcc (Debian 8.3.0-6) 8.3.0, 64-bit
>
> (1 row)
>
> *_Entries in ::: /etc/postgresql/12/main/pg_hba.conf _*
>
> # Database administrative login by Unix domain socket
>
> local   all postgres                                peer
>
> # TYPE  DATABASE USER            ADDRESS                 METHOD
>
> # "local" is for Unix domain socket connections only
>
> local   all all                                     peer
>
> # IPv4 local connections:
>
> host    all all             127.0.0.1/32            md5
>
> # IPv6 local connections:
>
> host    all all             ::1/128                 md5
>
> # Allow replication connections from localhost, by a user with the
>
> # replication privilege.
>
> local   replication all                                     peer
>
> host    replication all             127.0.0.1/32            md5
>
> host    replication all             ::1/128                 md5
>
> *_Not connected_*
>
> *__*
>
> *postgres(at)srv:/opt$ netstat -nlp | grep 5432*
>
> (Not all processes could be identified, non-owned process info
>
> will not be shown, you would have to be root to see it all.)
>
> tcp        0      0 127.0.0.1:5432          0.0.0.0:*               LISTEN
> 25857/postgres
>
> unix  2      [ ACC ] STREAM     LISTENING     74234    25857/postgres
> /var/run/postgresql/.s.PGSQL.5432
>
> *postgres(at)srv:~$ telnet 10.133.214.32 5432*
>
> Trying 10.133.214.32...
>
> telnet: Unable to connect to remote host: Connection refused
>

--
Angular momentum makes the world go 'round.

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Pepe TD Vo 2019-12-23 19:39:59 Re: Cannot connect to postgresql on port 5432
Previous Message gilberto.castillo 2019-12-23 19:34:11 Re: [MASSMAIL]Cannot connect to postgresql on port 5432