How to install postgresql-contrib-11 on CentOS 7?

12,298

First make sure you have the correct rpm files installed for postgres 11. Then run

sudo yum install postgresql11-contrib

Here is a good article for installing postgresql on centos7

https://linuxize.com/post/how-to-install-postgresql-on-centos-7/

Share:
12,298

Related videos on Youtube

Takito Isumoro
Author by

Takito Isumoro

Updated on September 18, 2022

Comments

  • Takito Isumoro
    Takito Isumoro over 1 year

    So, I was trying to install extension citext on PostrgeSQL 11.1, but of course I've encountered an error:

    ERROR:  could not open extension control file "/usr/pgsql-11/share/extension/citext.control": No such file or directory
    

    I ran sudo yum install postgresql-contrib , but dependency for version 9.2 was installed. So where to find and how to install citext on PostgreSQL 11.1 on CentOS 7.6 ?

    Thank you!

  • jugovich
    jugovich over 5 years
    Also potential duplicate of stackoverflow.com/questions/9025515/…