In this Blog you can learn database, networking and cloud skills that will help you to understand Oracle Database and Non Oracle Database with extra key skill

Installation of PostgreSQL Database on Oracle Linux 6

No comments :
PostgreSQL Database installation on Oracle Enterprise Linux 6

Download link:  https://www.postgresql.org/download/linux/redhat/

1) Select version: 9.5
2) Select platform: Oracle Enterprise Linux 6
3) Select architecture: x86_64
4) Install the repository RPM:
                # yum install https://download.postgresql.org/pub/repos/yum/9.5/redhat/rhel-6-x86_64/pgdg
oraclelinux95-9.5-3.noarch.rpm

5) Install the client packages:
                # yum install postgresql95

6) Optionally install the server packages:
                # yum install postgresql95-server

Optionally initialize the database and enable automatic start:

                # service postgresql-9.5 initdb
                # chkconfig postgresql-9.5 on
                # service postgresql-9.5 start

               

Reference:  https://www.postgresql.org/download/linux/redhat/

1) Select version: 11
2) Select platform: Oracle Enterprise Linux 6
3) Select architecture: x86_64
4) Install the repository RPM:
                # yum install https://download.postgresql.org/pub/repos/yum/11/redhat/rhel-6-x86_64/pgdg-oraclelinux11-11-2.noarch.rpm

5) Install the client packages:
                # yum install postgresql11

6) Optionally install the server packages:
                # yum install postgresql11-server

Optionally initialize the database and enable automatic start:

                # service postgresql-11 initdb
                # chkconfig postgresql-11 on
                # service postgresql-11 starts

No comments :

Post a Comment