pixel

Install Oracle Grid Infrastructure 12c on CentOS 7

Share on Social Media

Learn how to install Oracle Grid Infrastructure 12c on CentOS 7 with this detailed guide. Ensure a reliable and scalable database infrastructure for your enterprise applications. #centlinux #linux #oracle

What is Oracle Grid Infrastructure 12c?

Oracle Grid Infrastructure 12c is the software that provides system support for an Oracle database including volume management, file system, and automatic restart capabilities. Oracle combined the two infrastructure products (i.e. Oracle ASM and Clusterware) into a single set of binaries that is installed in the Oracle Grid Infrastructure 12c home. If you plan to use Oracle Restart or Oracle ASM (Automatic Storage Management), then you must install Oracle Grid Infrastructure 12c prior to installation of Oracle database, because Oracle Restart and Oracle ASM are part of Oracle Grid Infrastructure 12c.

Install Oracle Grid Infrastructure 12c on CentOS 7
Install Oracle Grid Infrastructure 12c on CentOS 7

What is Oracle ASM?

Oracle ASM is the volume manager and the file system for Oracle database files that supports single-instance Oracle databases and Oracle RAC (Real Application Clusters) configurations. Oracle ASM also supports a general purpose file system for your application needs including Oracle database binaries. Oracle ASM is Oracle’s recommended storage management solution that provides an alternative to conventional volume managers, file systems, and raw devices.

In this article, we will perform the install Oracle Grid Infrastructure 12c as a Stand Alone Server.

Recommended Training: Oracle 11gR2 RAC – Quick 2-node RAC Deployment Guide from Arun Kumar.

1248422 8e16 5

Linux Specification

We are using a preconfigured CentOS 7.1 server with following specification.

  • CPU – 2.4 Ghz (Single Core)
  • Memory – 2 GB
  • Storage – 50 GB (2 GB for Swap, 23 for /, 25 GB for ASM Disks)
  • tmpfs – 1.2 GB
  • Operating System – CentOS 7.1
Read Also:ASMLIB : Installation and Configuration
 Create Consistent Disks with UDEV for Oracle ASM

Oracle Grid Infrastructure 12c pre-install configuration

Prior to install Oracle Grid Infrastructure 12c, make sure that you have already perform steps to configure ASMLIB.

Connect to the Server as root user by using SSH and check available ASM Disks.

oracleasm listdisks

Output:

ASM_DATA1
ASM_DATA2
ASM_DATA3
ASM_FRA1
ASM_FRA2
ASM_FRA3

I have 6 ASM Disks available that I have created via ASMLIB. I am planning to use ASM_DATAx Disks for oradata and ASM_FRAx for recovery_area.

Set Kernel parameters as follows:

cat >> /etc/sysctl.conf << EOF
kernel.shmmni = 4096
kernel.sem = 250 32000 100 128
fs.file-max = 6553600
net.ipv4.ip_local_port_range = 9000 65500
net.core.rmem_default = 262144
net.core.rmem_max = 4194304
net.core.wmem_default = 262144
net.core.wmem_max = 1048576
EOF

Set security limits for oracle and grid users.

cat >> /etc/security/limits.conf << EOF
grid soft nproc 2047
grid hard nproc 16384
grid soft nofile 1024
grid hard nofile 65536
oracle soft nproc 2047
oracle hard nproc 16384
oracle soft nofile 1024
oracle hard nofile 65536
EOF

Configure PAM (Pluggable Authentication Modules).

cat >> /etc/pam.d/login << EOF
session required pam_limits.so
EOF

Add following script to session startup file.

cat >> /etc/profile << EOF
if [ $USER = "oracle" ] || [ $USER = "grid" ]; then
if [ $SHELL = "/bin/ksh" ]; then
ulimit -p 16384
ulimit -n 65536
else
ulimit -u 16384 -n 65536
fi
umask 022
fi
EOF

Create owner of Oracle database server. I am not creating groups because they are already created during ASMLIB configuration.

useradd -u 602 -g oinstall -G dba,asmdba oracle

Create directories and set permissions.

mkdir -p /u01/app/oraInventory
chown -R grid:oinstall /u01/app/oraInventory
chmod -R 775 /u01/app/oraInventory

mkdir -p /u01/app/grid/product/12.1.0/grid
chown -R grid:oinstall /u01/app/grid
chmod -R 775 /u01/app/grid/product/12.1.0/grid

mkdir -p /u01/app/oracle
mkdir /u01/app/oracle/cfgtoollogs
chown -R oracle:oinstall /u01/app/oracle
chmod -R 775 /u01/app/oracle

mkdir -p /u01/app/oracle/product/11.2.0/db_1
chown -R oracle:oinstall /u01/app/oracle/product/11.2.0/db_1
chmod -R 775 /u01/app/oracle/product/11.2.0/db_1

Install required packages using yum.

yum install -y binutils
yum install -y compat-libstdc++
yum install -y elfutils-libelf
yum install -y elfutils-libelf-devel
yum install -y expat
yum install -y gcc
yum install -y libstdc++
yum install -y libstdc++-devel
yum install -y gcc-c++
yum install -y glibc
yum install -y glibc-common
yum install -y glibc-devel
yum install -y glibc-headers
yum install -y libaio
yum install -y libaio-devel
yum install -y libgcc
yum install -y make
yum install -y sysstat
yum install -y unixODBC
yum install -y unixODBC-devel
yum install -y compat-libcap1
yum install -y ksh
yum install -y nfs-utils-lib nfs-utils 

Install Oracle Grid Infrastructure 12c on CentOS 7

Login as grid user and start installation.

cd /soft/grid
./runInstaller

Output:

Starting Oracle Universal Installer... 
Checking Temp space: must be greater than 120 MB.   Actual 13537 MB    Passed
Checking swap space: must be greater than 150 MB.   Actual 1983 MB    Passed
Checking monitor: must be configured to display at least 256 colors.    Actual 16777216    Passed
Preparing to launch Oracle Universal Installer from /tmp/OraInstall2016-04-11_02-00-28AM. Please wait ...
Grid 12c - Software Updates
Grid 12c – Software Updates

Select Skip Software updates.

Click on Next.

Grid Infrastructure Installation Option
Grid Infrastructure Installation Option

Select Install and Configure Oracle Grid Infrastructure for a Standalone Server.

Click on  Next.

Grid 12c - Product Language
Grid 12c – Product Language

Click on Next.

Oracle ASM Disk Groups
Oracle ASM Disk Groups

Select the 3 Disks ASM_DATA1, ASM_DATA2 & ASM_DATA3.

Click on Next.

Oracle ASM Password
Oracle ASM Password

Set Password for SYS and ASMSNMP.

Click on Next.

Oracle Grid - OS Groups
Oracle Grid – OS Groups

Installer automatically selects default OS groups.

Click on Next.

Grid 12c Installation Location
Grid 12c Installation Location

Click on Next.

Grid 12c - Create Inventory
Grid 12c – Create Inventory

Click on Next.

Oracle 12c - root Script Execution Configuration
Oracle 12c – root Script Execution Configuration

Select Automatically run configuration scripts and enter root password.

Click on Next.

Grid 12c Installation Summary
Grid 12c Installation Summary

Installer skips the Prerequisite Check screen because it didn’t find any warning or failure.

Click on Install.

Oracle 12c - Install Product
Oracle 12c – Install Product
12c Configuration Scripts
12c Configuration Scripts

Click on Yes.

Grid Infrastructure 12c Installation Finish
Grid Infrastructure 12c Installation Finish

Click on Close to finish installation.

Oracle Grid Infrastructure 12c as stand alone server has been installed.

Final Thoughts

Installing Oracle Grid Infrastructure 12c on CentOS 7 is a crucial step for establishing a reliable and scalable database infrastructure for your enterprise applications. By following this guide, you can ensure a smooth installation process and optimal performance.

From setting up scalable AWS solutions to managing complex Linux environments, I’ve got you covered. Visit my Fiverr profile to get started.

Looking for something?

Leave a Reply