Re: Problem with pl/python procedure connecting to the internet

From: John R Pierce <pierce(at)hogranch(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: Problem with pl/python procedure connecting to the internet
Date: 2015-08-21 07:34:14
Message-ID: 55D6D476.50706@hogranch.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

listen_addresses should only affect the interfaces that the postgres
server is listening to connections from. as long as your app is on the
same machine, and uses localhost:someport to connect to the postgres
server, then the default listen_addresses='localhost' should be sufficient.'

if you want clients to connect from other systems, then listen_addresses
= '*' is appropriate.

listen_addresses should have no impact on what your plpython app can
connect to outside of postgres, unless you're running the 'safe' version
of pl***

--
john r pierce, recycling bits in santa cruz

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Amit Bondwal 2015-08-21 09:56:41 Postgresql 9.3 hotstandby replication error, icorrect checksome in control file
Previous Message Albe Laurenz 2015-08-21 07:10:55 Re: Dangers of mislabelled immutable functions