SlideShare a Scribd company logo
1 of 50
Download to read offline
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
Introduction
This document describe steps to to Install Redhat Enterprise Linux 7 and then using this OS to install
Oracle Database 12.1.0.2.
Environment:-
Operating System: Redhat Enterprise Linux 7
Database: - 12.1.0.2
Software Needed:-
1. Oracle Database 12.1.0.2 Downloaded from here.
2. Redhat Enterprise Linux 7.
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
About the Author
Osama Mustafa has progressive experience in Oracle Products, community. He recently served as
Oracle Database Administrator.
Provide Database Implementation Solutions, High Availability Solution, Infrastructure and Storage
Planning, Install, Configure, Implement and manage Oracle E-Business Suite environments. Architect,
build and support highly-available Oracle EBS, Database and Fusion Middleware environments including
appropriate reporting, Installs, configures, upgrades, tunes, and maintains production, development and
test databases.
He entered Oracle ACE Program in 2013, he is author for the book Oracle Penetration Testing, Osama
Mustafa Certified OCP 10g,11g, Linux Implementations , Certified Ethical hacker and LPT , and Solaris
Administrator.
Include to all this Osama Mustafa is international Speaker in Oracle User Group and Oracle OTN Tour,
Published Online Articles in His blog about Oracle Technology, Volunteer in Oracle User Group such as
IOUG, ODTUG and UKOUG , Volunteer Board member in RACSIG and Organizer for RACATTACK
Event around the world. Recently his article has been published on OTECH magazine about Real
Application Cluster Here.
Twitter: @OsamaOracle
G+: Osama Mustafa
SlidShare: Osama Mustafa
LinkedIn: http://www.linkedin.com/in/osamamustafa
Blog: https://osamamustafa.blogpsot.com.
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
This document provided with Screenshots follow the pictures  Good Luck
Welcome Screen, Choose The Language you would like to continue your setup :-
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
In Redhat 7 you can prepare the installation in one screen as you see from the below picture:-
Press on the First Option Date & Time:-
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
Second Option, Keyboard language:-
Ethernet Card Configuration and Hostname :-
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
Now the Package installation:-
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
The Hard Disk Configuration and Create Custom File System:-
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
Now we are ready to press next.
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
Set The Root Password By Pressing “Root Password”:-
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
Press Reboot
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
Congratulation Done.
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
Now the operating system is ready to install oracle database 12.1.0.2 but we need to perform some pre
requisites before install Oracle Database or you can do it by “Fix & Check Again”
Regarding to Oracle documentation:-
Group and oracle User:-
groupadd -g 54321 oinstall
groupadd -g 54322 dba
groupadd -g 54323 oper
groupadd -g 54324 backupdba
groupadd -g 54325 dgdba
groupadd -g 54326 kmdba
groupadd -g 54327 asmdba
groupadd -g 54328 asmoper
groupadd -g 54329 asmadmin
useradd -u 54321 -g oracle -G dba,oper oracle
password oracle
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
Packages:-
binutils-2.23.52.0.1-12.el7.x86_64
compat-libcap1-1.10-3.el7.x86_64
gcc-4.8.2-3.el7.x86_64
gcc-c++-4.8.2-3.el7.x86_64
glibc-2.17-36.el7.i686
glibc-2.17-36.el7.x86_64
glibc-devel-2.17-36.el7.i686
glibc-devel-2.17-36.el7.x86_64
ksh
libaio-0.3.109-9.el7.i686
libaio-0.3.109-9.el7.x86_64
libaio-devel-0.3.109-9.el7.i686
libaio-devel-0.3.109-9.el7.x86_64
libgcc-4.8.2-3.el7.i686
libgcc-4.8.2-3.el7.x86_64
libstdc++-4.8.2-3.el7.i686
libstdc++-4.8.2-3.el7.x86_64
libstdc++-devel-4.8.2-3.el7.i686
libstdc++-devel-4.8.2-3.el7.x86_64
libXi-1.7.2-1.el7.i686
libXi-1.7.2-1.el7.x86_64
libXtst-1.2.2-1.el7.i686
libXtst-1.2.2-1.el7.x86_64
make-3.82-19.el7.x86_64
sysstat-10.1.5-1.el7.x86_64
Download the package using rpm –ivh Package-name.
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
Now edit the following file & add these line:-
vi /etc/sysctl.conf
fs.aio-max-nr = 1048576
fs.file-max = 6815744
kernel.shmall = 2097152
kernel.shmmax = 536870912
kernel.shmmni = 4096
kernel.sem = 250 32000 100 128
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 = 1048586
/sbin/sysctl –p
Edit the below File and change the following:-
vi /etc/sysconfig/selinux
# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
# enforcing - SELinux security policy is enforced.
# permissive - SELinux prints warnings instead of enforcing.
# disabled - No SELinux policy is loaded.
SELINUX=permissive
Disable Firewall
systemctl stop firewalld
systemctl stop firewalld
Create oracle installation directory:-
mkdir -p /u01/app/oracle/product/12.1.0/db_1
chown -R oracle:oinstall /u01
chmod -R 775 /u01
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
Edit the Profile Parameter file:-
vi /etc/security/limits.conf
oracle soft nofile 1024
oracle hard nofile 65536
oracle soft nproc 2047
oracle hard nproc 16384
oracle soft stack 10240
oracle hard stack 32768
Enable it to all the users:-
vi /etc/security/limits.d/20-nproc.conf
* soft nproc 1024
to
* - nproc 16384
Finally Edit .bash_profile :-
export ORACLE_UNQNAME=orcl
export ORACLE_BASE=/u01/app/oracle
export ORACLE_HOME=$ORACLE_BASE/product/12.1.0/db_1
export ORACLE_SID=orcl
export PATH=/usr/sbin:$PATH
export PATH=$ORACLE_HOME/bin:$PATH
Now everything is ready Follow the below screens:-
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
The Binary has been installed successfully without any problem lets continue to create listener:-
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
Listener created successfully run dbca command to create database:-
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
Done …
To Be continue with more advanced topics

More Related Content

What's hot

Are You Ready for 12c? Data Migration and Upgrade Best Practices
Are You Ready for 12c? Data Migration and Upgrade Best PracticesAre You Ready for 12c? Data Migration and Upgrade Best Practices
Are You Ready for 12c? Data Migration and Upgrade Best Practices
Performance Tuning Corporation
 
Oracle 12c RAC On your laptop Step by Step Implementation Guide 1.0
Oracle 12c RAC On your laptop Step by Step Implementation Guide 1.0Oracle 12c RAC On your laptop Step by Step Implementation Guide 1.0
Oracle 12c RAC On your laptop Step by Step Implementation Guide 1.0
Yury Velikanov
 

What's hot (20)

Install oracle siebel on windows 2008 r2
Install oracle siebel on windows 2008 r2Install oracle siebel on windows 2008 r2
Install oracle siebel on windows 2008 r2
 
Eouc 12 on 12c osama mustafa
Eouc 12 on 12c osama mustafaEouc 12 on 12c osama mustafa
Eouc 12 on 12c osama mustafa
 
12c installation
12c installation12c installation
12c installation
 
Ebs clone r12.2.4
Ebs clone r12.2.4Ebs clone r12.2.4
Ebs clone r12.2.4
 
Installing oracle timesten database On Linux
Installing oracle timesten database On Linux Installing oracle timesten database On Linux
Installing oracle timesten database On Linux
 
Install oracle solaris 11.2 using gui
Install oracle solaris 11.2 using guiInstall oracle solaris 11.2 using gui
Install oracle solaris 11.2 using gui
 
Step by Step to Install oracle grid 11.2.0.3 on solaris 11.1
Step by Step to Install oracle grid 11.2.0.3 on solaris 11.1Step by Step to Install oracle grid 11.2.0.3 on solaris 11.1
Step by Step to Install oracle grid 11.2.0.3 on solaris 11.1
 
Pluggable database tutorial
Pluggable database tutorialPluggable database tutorial
Pluggable database tutorial
 
Are You Ready for 12c? Data Migration and Upgrade Best Practices
Are You Ready for 12c? Data Migration and Upgrade Best PracticesAre You Ready for 12c? Data Migration and Upgrade Best Practices
Are You Ready for 12c? Data Migration and Upgrade Best Practices
 
Oracle Enterprise manager 13c Installation
Oracle Enterprise manager 13c InstallationOracle Enterprise manager 13c Installation
Oracle Enterprise manager 13c Installation
 
Oracle autovue
Oracle autovueOracle autovue
Oracle autovue
 
J2ee user managment using dwh builder
J2ee user managment using dwh builderJ2ee user managment using dwh builder
J2ee user managment using dwh builder
 
Obiee 11.1.7.0 step by step installation on linux (rhel – red hat)
Obiee 11.1.7.0 step by step installation on linux (rhel – red hat)Obiee 11.1.7.0 step by step installation on linux (rhel – red hat)
Obiee 11.1.7.0 step by step installation on linux (rhel – red hat)
 
How to add storage to esxi 5.5
How to add storage to esxi 5.5How to add storage to esxi 5.5
How to add storage to esxi 5.5
 
Weblogic 12c installation (oracle linux)
Weblogic 12c installation (oracle linux)Weblogic 12c installation (oracle linux)
Weblogic 12c installation (oracle linux)
 
Pluggable database 3
Pluggable database 3Pluggable database 3
Pluggable database 3
 
Steps to Create odbc connection linux
Steps to Create odbc connection linuxSteps to Create odbc connection linux
Steps to Create odbc connection linux
 
En rhel-deploy-oracle-rac-database-12c-rhel-7
En rhel-deploy-oracle-rac-database-12c-rhel-7En rhel-deploy-oracle-rac-database-12c-rhel-7
En rhel-deploy-oracle-rac-database-12c-rhel-7
 
Upgrade OBIEE to 11.1.1.7.1
Upgrade OBIEE to 11.1.1.7.1Upgrade OBIEE to 11.1.1.7.1
Upgrade OBIEE to 11.1.1.7.1
 
Oracle 12c RAC On your laptop Step by Step Implementation Guide 1.0
Oracle 12c RAC On your laptop Step by Step Implementation Guide 1.0Oracle 12c RAC On your laptop Step by Step Implementation Guide 1.0
Oracle 12c RAC On your laptop Step by Step Implementation Guide 1.0
 

Viewers also liked

Le blog technique de laurent besson(1)
Le blog technique de laurent besson(1)Le blog technique de laurent besson(1)
Le blog technique de laurent besson(1)
boblapointe
 
131444591 97430634-apostila-468-zabbix
131444591 97430634-apostila-468-zabbix131444591 97430634-apostila-468-zabbix
131444591 97430634-apostila-468-zabbix
Rodrigo Souza
 
Backup and Recovery Procedure
Backup and Recovery ProcedureBackup and Recovery Procedure
Backup and Recovery Procedure
Anar Godjaev
 
Workshop SQL Server 2012
Workshop SQL Server 2012Workshop SQL Server 2012
Workshop SQL Server 2012
Viviane_ribeiro
 

Viewers also liked (20)

Oracle database 12 c on oracle linux 7.3
Oracle database 12 c on oracle linux 7.3Oracle database 12 c on oracle linux 7.3
Oracle database 12 c on oracle linux 7.3
 
Le blog technique de laurent besson(1)
Le blog technique de laurent besson(1)Le blog technique de laurent besson(1)
Le blog technique de laurent besson(1)
 
Asian Spirit 3 Day Dba On Ubl
Asian Spirit 3 Day Dba On UblAsian Spirit 3 Day Dba On Ubl
Asian Spirit 3 Day Dba On Ubl
 
Materials Used2
Materials Used2Materials Used2
Materials Used2
 
Oracle TDE - O BĂĄsico
Oracle TDE - O BĂĄsicoOracle TDE - O BĂĄsico
Oracle TDE - O BĂĄsico
 
Ambiente de exploração oracle
Ambiente de exploração oracleAmbiente de exploração oracle
Ambiente de exploração oracle
 
Rman
RmanRman
Rman
 
firewalld concept and configuration
firewalld concept and configurationfirewalld concept and configuration
firewalld concept and configuration
 
Oracle Enteprise Manager Cloud Control 12c - Setting Up Metrics and Monitorin...
Oracle Enteprise Manager Cloud Control 12c - Setting Up Metrics and Monitorin...Oracle Enteprise Manager Cloud Control 12c - Setting Up Metrics and Monitorin...
Oracle Enteprise Manager Cloud Control 12c - Setting Up Metrics and Monitorin...
 
131444591 97430634-apostila-468-zabbix
131444591 97430634-apostila-468-zabbix131444591 97430634-apostila-468-zabbix
131444591 97430634-apostila-468-zabbix
 
Gnu/Linux - Workshop EACH-USP
Gnu/Linux - Workshop EACH-USPGnu/Linux - Workshop EACH-USP
Gnu/Linux - Workshop EACH-USP
 
Criando um baseline de seu ambiente completo utilizando ssis e ssrs
Criando um baseline de seu ambiente completo utilizando ssis e ssrsCriando um baseline de seu ambiente completo utilizando ssis e ssrs
Criando um baseline de seu ambiente completo utilizando ssis e ssrs
 
Oracle Multitenant - Oracle Ankara Day 2014
Oracle Multitenant - Oracle Ankara Day 2014Oracle Multitenant - Oracle Ankara Day 2014
Oracle Multitenant - Oracle Ankara Day 2014
 
Palestra ganeti puppet
Palestra ganeti puppetPalestra ganeti puppet
Palestra ganeti puppet
 
Administracao de sistemas_com_puppet
Administracao de sistemas_com_puppetAdministracao de sistemas_com_puppet
Administracao de sistemas_com_puppet
 
Step by Step Restore rman to different host
Step by Step Restore rman to different hostStep by Step Restore rman to different host
Step by Step Restore rman to different host
 
Apostila Oracle
Apostila OracleApostila Oracle
Apostila Oracle
 
Backup and Recovery Procedure
Backup and Recovery ProcedureBackup and Recovery Procedure
Backup and Recovery Procedure
 
PDB Provisioning with Oracle Multitenant Self Service Application
PDB Provisioning with Oracle Multitenant Self Service ApplicationPDB Provisioning with Oracle Multitenant Self Service Application
PDB Provisioning with Oracle Multitenant Self Service Application
 
Workshop SQL Server 2012
Workshop SQL Server 2012Workshop SQL Server 2012
Workshop SQL Server 2012
 

Similar to 12c on RHEL7

图文详解安装Net backup 6.5备份恢复oracle 10g rac 数据库
图文详解安装Net backup 6.5备份恢复oracle 10g rac 数据库图文详解安装Net backup 6.5备份恢复oracle 10g rac 数据库
图文详解安装Net backup 6.5备份恢复oracle 10g rac 数据库
maclean liu
 
Oracle olap-installation
Oracle olap-installationOracle olap-installation
Oracle olap-installation
Amit Sharma
 
Upgrade 11.2.0.1 gi crs to 11.2.0.2 in linux
Upgrade 11.2.0.1 gi crs to 11.2.0.2 in linuxUpgrade 11.2.0.1 gi crs to 11.2.0.2 in linux
Upgrade 11.2.0.1 gi crs to 11.2.0.2 in linux
maclean liu
 
M sata raid_adaptec
M sata raid_adaptecM sata raid_adaptec
M sata raid_adaptec
laonap166
 
Rac on NFS
Rac on NFSRac on NFS
Rac on NFS
mengjiagou
 
Upgrade 10204-to-10205 on-2-node_rac_linux_x86_64_detail-steps_v0.1
Upgrade 10204-to-10205 on-2-node_rac_linux_x86_64_detail-steps_v0.1Upgrade 10204-to-10205 on-2-node_rac_linux_x86_64_detail-steps_v0.1
Upgrade 10204-to-10205 on-2-node_rac_linux_x86_64_detail-steps_v0.1
Raheel Syed
 

Similar to 12c on RHEL7 (20)

Installing oracle grid infrastructure and database 12c r1
Installing oracle grid infrastructure and database 12c r1Installing oracle grid infrastructure and database 12c r1
Installing oracle grid infrastructure and database 12c r1
 
Obia11.1.1.10.1 installation and configuration on Unix platform
Obia11.1.1.10.1 installation and configuration on Unix platformObia11.1.1.10.1 installation and configuration on Unix platform
Obia11.1.1.10.1 installation and configuration on Unix platform
 
Discoverer 11.1.1.7 web logic (10.3.6) & ebs r12 12.1.3) implementation guide...
Discoverer 11.1.1.7 web logic (10.3.6) & ebs r12 12.1.3) implementation guide...Discoverer 11.1.1.7 web logic (10.3.6) & ebs r12 12.1.3) implementation guide...
Discoverer 11.1.1.7 web logic (10.3.6) & ebs r12 12.1.3) implementation guide...
 
Oracle 12cR2 RAC Database Software Installation and Create Database
Oracle 12cR2 RAC Database Software Installation and Create DatabaseOracle 12cR2 RAC Database Software Installation and Create Database
Oracle 12cR2 RAC Database Software Installation and Create Database
 
图文详解安装Net backup 6.5备份恢复oracle 10g rac 数据库
图文详解安装Net backup 6.5备份恢复oracle 10g rac 数据库图文详解安装Net backup 6.5备份恢复oracle 10g rac 数据库
图文详解安装Net backup 6.5备份恢复oracle 10g rac 数据库
 
RAC-Installing your First Cluster and Database
RAC-Installing your First Cluster and DatabaseRAC-Installing your First Cluster and Database
RAC-Installing your First Cluster and Database
 
Oracle olap-installation
Oracle olap-installationOracle olap-installation
Oracle olap-installation
 
Oracle-11g-upgrade
Oracle-11g-upgradeOracle-11g-upgrade
Oracle-11g-upgrade
 
12c (12.1) Database installation on Solaris 11(11.2)
12c (12.1) Database  installation on Solaris 11(11.2)12c (12.1) Database  installation on Solaris 11(11.2)
12c (12.1) Database installation on Solaris 11(11.2)
 
Upgrade 11.2.0.1 gi crs to 11.2.0.2 in linux
Upgrade 11.2.0.1 gi crs to 11.2.0.2 in linuxUpgrade 11.2.0.1 gi crs to 11.2.0.2 in linux
Upgrade 11.2.0.1 gi crs to 11.2.0.2 in linux
 
Oracle 11g to 12c Upgrade With Data Guard and ASM
Oracle 11g to 12c  Upgrade With Data Guard and ASMOracle 11g to 12c  Upgrade With Data Guard and ASM
Oracle 11g to 12c Upgrade With Data Guard and ASM
 
Oam install & config
Oam install & configOam install & config
Oam install & config
 
OAM Install & Config
OAM Install & ConfigOAM Install & Config
OAM Install & Config
 
Freeradius edir
Freeradius edirFreeradius edir
Freeradius edir
 
Oracle 11g Installation With ASM and Data Guard Setup
Oracle 11g Installation With ASM and Data Guard SetupOracle 11g Installation With ASM and Data Guard Setup
Oracle 11g Installation With ASM and Data Guard Setup
 
M sata raid_adaptec
M sata raid_adaptecM sata raid_adaptec
M sata raid_adaptec
 
Oracle forms and reports 11g installation on linux
Oracle forms and reports 11g installation on linuxOracle forms and reports 11g installation on linux
Oracle forms and reports 11g installation on linux
 
Rac on NFS
Rac on NFSRac on NFS
Rac on NFS
 
Oracle EBS R12.1.3_Installation_linux(64bit)_Pan_Tian
Oracle EBS R12.1.3_Installation_linux(64bit)_Pan_TianOracle EBS R12.1.3_Installation_linux(64bit)_Pan_Tian
Oracle EBS R12.1.3_Installation_linux(64bit)_Pan_Tian
 
Upgrade 10204-to-10205 on-2-node_rac_linux_x86_64_detail-steps_v0.1
Upgrade 10204-to-10205 on-2-node_rac_linux_x86_64_detail-steps_v0.1Upgrade 10204-to-10205 on-2-node_rac_linux_x86_64_detail-steps_v0.1
Upgrade 10204-to-10205 on-2-node_rac_linux_x86_64_detail-steps_v0.1
 

More from Osama Mustafa

More from Osama Mustafa (16)

Case study for software architect
Case study for software architectCase study for software architect
Case study for software architect
 
DevOps for database
DevOps for databaseDevOps for database
DevOps for database
 
Does cloud mean the end of the dba
Does cloud mean the end of the dbaDoes cloud mean the end of the dba
Does cloud mean the end of the dba
 
Using git hub for your code
Using git hub for your codeUsing git hub for your code
Using git hub for your code
 
DevOps Project
DevOps Project DevOps Project
DevOps Project
 
Java business service
Java business serviceJava business service
Java business service
 
Steps creating data_integration_services
Steps creating data_integration_servicesSteps creating data_integration_services
Steps creating data_integration_services
 
Build, Deploy and Run Node Js Application on Azure using Docker
Build, Deploy and Run Node Js Application on Azure using DockerBuild, Deploy and Run Node Js Application on Azure using Docker
Build, Deploy and Run Node Js Application on Azure using Docker
 
Oracle api gateway installation as cluster and single node
Oracle api gateway installation as cluster and single nodeOracle api gateway installation as cluster and single node
Oracle api gateway installation as cluster and single node
 
Helping implementer dealing with famous siebel based system messages and er...
Helping implementer dealing with famous siebel   based system messages and er...Helping implementer dealing with famous siebel   based system messages and er...
Helping implementer dealing with famous siebel based system messages and er...
 
Weblogic and docker
Weblogic and dockerWeblogic and docker
Weblogic and docker
 
Weblogic 101 for dba
Weblogic  101 for dbaWeblogic  101 for dba
Weblogic 101 for dba
 
Oracle obia 11.1.1.10.1 installation
Oracle obia 11.1.1.10.1 installation Oracle obia 11.1.1.10.1 installation
Oracle obia 11.1.1.10.1 installation
 
Erp installation r12.2
Erp installation r12.2Erp installation r12.2
Erp installation r12.2
 
OBIA Installation
OBIA Installation OBIA Installation
OBIA Installation
 
How to apply new patch on siebel 8.2.2.4
How to apply new patch on siebel 8.2.2.4How to apply new patch on siebel 8.2.2.4
How to apply new patch on siebel 8.2.2.4
 

Recently uploaded

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
WSO2
 

Recently uploaded (20)

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot ModelNavi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdf
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 

12c on RHEL7

  • 1. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7 Introduction This document describe steps to to Install Redhat Enterprise Linux 7 and then using this OS to install Oracle Database 12.1.0.2. Environment:- Operating System: Redhat Enterprise Linux 7 Database: - 12.1.0.2 Software Needed:- 1. Oracle Database 12.1.0.2 Downloaded from here. 2. Redhat Enterprise Linux 7.
  • 2. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7 About the Author Osama Mustafa has progressive experience in Oracle Products, community. He recently served as Oracle Database Administrator. Provide Database Implementation Solutions, High Availability Solution, Infrastructure and Storage Planning, Install, Configure, Implement and manage Oracle E-Business Suite environments. Architect, build and support highly-available Oracle EBS, Database and Fusion Middleware environments including appropriate reporting, Installs, configures, upgrades, tunes, and maintains production, development and test databases. He entered Oracle ACE Program in 2013, he is author for the book Oracle Penetration Testing, Osama Mustafa Certified OCP 10g,11g, Linux Implementations , Certified Ethical hacker and LPT , and Solaris Administrator. Include to all this Osama Mustafa is international Speaker in Oracle User Group and Oracle OTN Tour, Published Online Articles in His blog about Oracle Technology, Volunteer in Oracle User Group such as IOUG, ODTUG and UKOUG , Volunteer Board member in RACSIG and Organizer for RACATTACK Event around the world. Recently his article has been published on OTECH magazine about Real Application Cluster Here. Twitter: @OsamaOracle G+: Osama Mustafa SlidShare: Osama Mustafa LinkedIn: http://www.linkedin.com/in/osamamustafa Blog: https://osamamustafa.blogpsot.com.
  • 3. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7 This document provided with Screenshots follow the pictures  Good Luck Welcome Screen, Choose The Language you would like to continue your setup :-
  • 4. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7 In Redhat 7 you can prepare the installation in one screen as you see from the below picture:- Press on the First Option Date & Time:-
  • 5. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
  • 6. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7 Second Option, Keyboard language:- Ethernet Card Configuration and Hostname :-
  • 7. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7 Now the Package installation:-
  • 8. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7 The Hard Disk Configuration and Create Custom File System:-
  • 9. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7 Now we are ready to press next.
  • 10. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7 Set The Root Password By Pressing “Root Password”:-
  • 11. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
  • 12. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7 Press Reboot
  • 13. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7 Congratulation Done.
  • 14. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7 Now the operating system is ready to install oracle database 12.1.0.2 but we need to perform some pre requisites before install Oracle Database or you can do it by “Fix & Check Again” Regarding to Oracle documentation:- Group and oracle User:- groupadd -g 54321 oinstall groupadd -g 54322 dba groupadd -g 54323 oper groupadd -g 54324 backupdba groupadd -g 54325 dgdba groupadd -g 54326 kmdba groupadd -g 54327 asmdba groupadd -g 54328 asmoper groupadd -g 54329 asmadmin useradd -u 54321 -g oracle -G dba,oper oracle password oracle
  • 15. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7 Packages:- binutils-2.23.52.0.1-12.el7.x86_64 compat-libcap1-1.10-3.el7.x86_64 gcc-4.8.2-3.el7.x86_64 gcc-c++-4.8.2-3.el7.x86_64 glibc-2.17-36.el7.i686 glibc-2.17-36.el7.x86_64 glibc-devel-2.17-36.el7.i686 glibc-devel-2.17-36.el7.x86_64 ksh libaio-0.3.109-9.el7.i686 libaio-0.3.109-9.el7.x86_64 libaio-devel-0.3.109-9.el7.i686 libaio-devel-0.3.109-9.el7.x86_64 libgcc-4.8.2-3.el7.i686 libgcc-4.8.2-3.el7.x86_64 libstdc++-4.8.2-3.el7.i686 libstdc++-4.8.2-3.el7.x86_64 libstdc++-devel-4.8.2-3.el7.i686 libstdc++-devel-4.8.2-3.el7.x86_64 libXi-1.7.2-1.el7.i686 libXi-1.7.2-1.el7.x86_64 libXtst-1.2.2-1.el7.i686 libXtst-1.2.2-1.el7.x86_64 make-3.82-19.el7.x86_64 sysstat-10.1.5-1.el7.x86_64 Download the package using rpm –ivh Package-name.
  • 16. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7 Now edit the following file & add these line:- vi /etc/sysctl.conf fs.aio-max-nr = 1048576 fs.file-max = 6815744 kernel.shmall = 2097152 kernel.shmmax = 536870912 kernel.shmmni = 4096 kernel.sem = 250 32000 100 128 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 = 1048586 /sbin/sysctl –p Edit the below File and change the following:- vi /etc/sysconfig/selinux # This file controls the state of SELinux on the system. # SELINUX= can take one of these three values: # enforcing - SELinux security policy is enforced. # permissive - SELinux prints warnings instead of enforcing. # disabled - No SELinux policy is loaded. SELINUX=permissive Disable Firewall systemctl stop firewalld systemctl stop firewalld Create oracle installation directory:- mkdir -p /u01/app/oracle/product/12.1.0/db_1 chown -R oracle:oinstall /u01 chmod -R 775 /u01
  • 17. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7 Edit the Profile Parameter file:- vi /etc/security/limits.conf oracle soft nofile 1024 oracle hard nofile 65536 oracle soft nproc 2047 oracle hard nproc 16384 oracle soft stack 10240 oracle hard stack 32768 Enable it to all the users:- vi /etc/security/limits.d/20-nproc.conf * soft nproc 1024 to * - nproc 16384 Finally Edit .bash_profile :- export ORACLE_UNQNAME=orcl export ORACLE_BASE=/u01/app/oracle export ORACLE_HOME=$ORACLE_BASE/product/12.1.0/db_1 export ORACLE_SID=orcl export PATH=/usr/sbin:$PATH export PATH=$ORACLE_HOME/bin:$PATH Now everything is ready Follow the below screens:-
  • 18. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
  • 19. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
  • 20. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
  • 21. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
  • 22. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
  • 23. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
  • 24. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
  • 25. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
  • 26. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
  • 27. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
  • 28. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
  • 29. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7 The Binary has been installed successfully without any problem lets continue to create listener:-
  • 30. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
  • 31. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
  • 32. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
  • 33. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
  • 34. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
  • 35. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
  • 36. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7 Listener created successfully run dbca command to create database:-
  • 37. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
  • 38. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
  • 39. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
  • 40. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
  • 41. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
  • 42. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
  • 43. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
  • 44. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
  • 45. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
  • 46. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
  • 47. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
  • 48. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
  • 49. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7
  • 50. STEPS TO INSTALL ORACLE DATABASE 12.1.0.2 ON REDHAT 7 Done … To Be continue with more advanced topics