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-22 07:43:03
Message-ID: 55D82807.7020500@hogranch.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 8/22/2015 12:23 AM, Igor Sosa Mayor wrote:
> Somehow I have the impression postgres is trying to make a connection
> without having to rights to get the answer (I'm on linux). I dont
> understand exactly which process (and with which rights) is executing
> the plpython procedure...
>
> Thanks in any case for your answer.

each client connection creates a postgresql server process. pl-anything
runs in that context, along with all sql for that client.

say... is by any chance selinux running in enforcing mode ? you might
try temporarily setting it to 'permissive' with the setenforce command,
and see if your python works.

--
john r pierce, recycling bits in santa cruz

if this is a reply to a list, I'm subscribed to that list, please reply to the list not me personally.

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Chris Mair 2015-08-22 10:05:46 Re: master/master replication with load balancer in front
Previous Message Igor Sosa Mayor 2015-08-22 07:23:54 Re: Problem with pl/python procedure connecting to the internet