BUG #15634: extension missing

Started by PG Bug reporting formabout 7 years ago5 messagesbugs
Jump to latest
#1PG Bug reporting form
noreply@postgresql.org

The following bug has been logged on the website:

Bug reference: 15634
Logged by: ramakrishnan r
Email address: prakash.ramakrishnan.ap@nielsen.com
PostgreSQL version: 11.1
Operating system: rhel 7.5
Description:

Hi Team,

We did the yum install PostgreSQL 11.1 on Linux server we facing some
issue.Not able to create the extension only showing below files.

postgres@brurhenppp001.enterprisenet.org:/usr/pgsql-11/share/extension
==> ll
total 12
-rw-r--r--. 1 root root 332 Nov 7 12:36 plpgsql--1.0.sql
-rw-r--r--. 1 root root 179 Nov 7 12:36 plpgsql.control
-rw-r--r--. 1 root root 381 Nov 7 12:36 plpgsql--unpackaged--1.0.sql

npp=# create extension dblink;
ERROR: could not open extension control file
"/usr/pgsql-11/share/extension/dblink.control": No such file or directory
npp=# create extension file_fdw;
ERROR: could not open extension control file
"/usr/pgsql-11/share/extension/file_fdw.control": No such file or
directory
npp=# \q

please as soon as possible its production server.

#2Andrew Gierth
andrew@tao11.riddles.org.uk
In reply to: PG Bug reporting form (#1)
Re: BUG #15634: extension missing

"PG" == PG Bug reporting form <noreply@postgresql.org> writes:

PG> We did the yum install PostgreSQL 11.1 on Linux server we facing
PG> some issue.Not able to create the extension only showing below
PG> files.

Some packagers put the contrib/* extension modules in a separate
-contrib package; install the version of that which goes with your
server.

--
Andrew (irc:RhodiumToad)

#3Prakash Ramakrishnan
prakash.ramakrishnan.ap@nielsen.com
In reply to: Andrew Gierth (#2)
Re: BUG #15634: extension missing

Thanks for the update.

On Wed, Feb 13, 2019 at 7:45 PM Andrew Gierth <andrew@tao11.riddles.org.uk>
wrote:

"PG" == PG Bug reporting form <noreply@postgresql.org> writes:

PG> We did the yum install PostgreSQL 11.1 on Linux server we facing
PG> some issue.Not able to create the extension only showing below
PG> files.

Some packagers put the contrib/* extension modules in a separate
-contrib package; install the version of that which goes with your
server.

--
Andrew (irc:RhodiumToad)

--

Regards,
Prakash.R
Postgresql DBA

#4Prakash Ramakrishnan
prakash.ramakrishnan.ap@nielsen.com
In reply to: Prakash Ramakrishnan (#3)
Re: BUG #15634: extension missing

Hi Andrew,

Not able to create the below extension can ypu suggest me the solution.

npp=# create extension oracle_fdw;
ERROR: could not open extension control file
"/usr/pgsql-11/share/extension/oracle_fdw.control": No such file or
directory
npp=# create extension pltcl;
ERROR: could not open extension control file
"/usr/pgsql-11/share/extension/pltcl.control": No such file or directory
npp=# create extension tds_fdw;
ERROR: could not open extension control file
"/usr/pgsql-11/share/extension/tds_fdw.control": No such file or directory

Regards,
Prakash.R
9551559623

On Wed, Feb 13, 2019 at 7:46 PM Prakash Ramakrishnan <
prakash.ramakrishnan.ap@nielsen.com> wrote:

Thanks for the update.

On Wed, Feb 13, 2019 at 7:45 PM Andrew Gierth <andrew@tao11.riddles.org.uk>
wrote:

"PG" == PG Bug reporting form <noreply@postgresql.org> writes:

PG> We did the yum install PostgreSQL 11.1 on Linux server we facing
PG> some issue.Not able to create the extension only showing below
PG> files.

Some packagers put the contrib/* extension modules in a separate
-contrib package; install the version of that which goes with your
server.

--
Andrew (irc:RhodiumToad)

--

Regards,
Prakash.R
Postgresql DBA

--

Regards,
Prakash.R
Postgresql DBA

#5Andrew Gierth
andrew@tao11.riddles.org.uk
In reply to: Prakash Ramakrishnan (#4)
Re: BUG #15634: extension missing

"Prakash" == Prakash Ramakrishnan <prakash.ramakrishnan.ap@nielsen.com> writes:

Prakash> Hi Andrew,
Prakash> Not able to create the below extension can ypu suggest me the
Prakash> solution.

The oracle_fdw and tds_fdw extensions are not part of the postgresql
distribution, but are third-party modules; presumably they have separate
packages.

While pltcl is part of the postgresql distribution it is usually
packaged separately for dependendcy reasons; look for a -pltcl package
matching your postgresql version.

--
Andrew.