Re: could not load library "$libdir/plpython2" while upgrading from postgresql-10 to 12

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: RAJAMOHAN <garajamohan(at)gmail(dot)com>
Cc: Holger Jakobs <holger(at)jakobs(dot)com>, pgsql-admin(at)lists(dot)postgresql(dot)org
Subject: Re: could not load library "$libdir/plpython2" while upgrading from postgresql-10 to 12
Date: 2021-03-07 16:20:09
Message-ID: 1622691.1615134009@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

RAJAMOHAN <garajamohan(at)gmail(dot)com> writes:
> But the issue is still occurring for me, even though I dropped the
> *plpython2u* extension and functions which were using the it.

Look through pg_proc for entries mentioning plpython2 in probin, ie

select proname from pg_proc where probin like '%plpython2%';

Another possibility is that you added plpython2 to shared_preload_libraries
or one of its sibling settings.

regards, tom lane

In response to

Responses

Browse pgsql-admin by date

  From Date Subject
Next Message Victor Sudakov 2021-03-08 05:41:14 Re: load balancer and connection pooling combined
Previous Message RAJAMOHAN 2021-03-07 07:01:40 Re: could not load library "$libdir/plpython2" while upgrading from postgresql-10 to 12