Re: Login from Remote Client

From: Efraín Déctor <efraindector(at)motumweb(dot)com>
To: pgsql-novice(at)postgresql(dot)org
Subject: Re: Login from Remote Client
Date: 2017-08-09 21:51:49
Message-ID: 03db4d86-f0cf-79c8-fae0-bc943287177f@motumweb.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

Hello.

You need to modify the parameter listen_addresses on postgresql.conf, it
can be something like this:

listen_addresses = 'localhost, PrivateIPOfMachine'

If the IP of the machine is 192.168.1.3 then the parameter should be like this:

listen_addresses = 'localhost, 192.168.1.3'

Restart the server and after that PostgreSQL is going to start listening for petitions on that IP and you can connect clients to it.

Cheers!

El 09/08/2017 a las 04:43 p. m., Bee.Lists escribió:
> Hi folks.
>
> Using a LAN tool, I can’t seem to see my LAN server sharing psql. It works on the machine (I can ssh and use it just fine) but the port 5432 isn’t open.
>
> I’ve modified the pg_hba.conf as such:
>
> host all user1 192.168.1.9 md5
> host all user2 192.168.1.9 md5
>
> The postgresql.conf file was also edited:
>
> listen_addresses = 'localhost' # what IP address(es) to listen on;
> port = 5432 # (change requires restart)
> max_connections = 100 # (change requires restart)
> superuser_reserved_connections = 3 # (change requires restart)
>
> password_encryption = on
>
> I’m not sure why I can’t even see the port open, and there is no firewall. It’s on the LAN, and the router isn’t blocking it. I’m sure I’m missing something. pg_ident.conf is not being used, and is functionally blank.
>
> Any advice appreciated.
>
>
> Cheers, Bee
>
>
>
>
>
>

In response to

Browse pgsql-novice by date

  From Date Subject
Next Message Tanstaafl 2017-08-11 15:27:04 IDE/Platform question
Previous Message Bee.Lists 2017-08-09 21:43:59 Login from Remote Client