Friday, December 4, 2020

oracle enterprise manager OEM13c installation

 OVERVIEW

in this article I will guide you how to install OEM 13c on redhat enterprise linux 7.8.

  1. software requirement
we can download OEM 13c software from :
https://www.oracle.com/enterprise-manager/downloads/cloud-control-downloads.html

em13300_linux64-2.zi
em13300_linux64-3.zi
em13300_linux64-4.zi
em13300_linux64-5.zi
em13300_linux64-6.zi
em13300_linux64.bin

   2. Server requirement

OS

redhat:enterprise_linux:7.8

RAM

12 GB

CPU

8

HDD

80 GB

PACKAGES

-packages for OMS

make-3.82-24.el7.x86_64

libXtst-1.2.3-1.el7.x86_64

binutils-2.27-43.base.el7_8.1.x86_64

gcc-4.8.5-39.el7.x86_64

libaio-0.3.109-13.el7.x86_64

glibc-common-2.17-307.el7.1.x86_64

libstdc++-4.8.5-39.el7.x86_64

sysstat-10.1.5-19.el7.x86_64

glibc-2.17-307.el7.1.x86_64

glibc-devel-2.17-307.el7.1.x86_64

glibc-devel-2.17-307.el7.1.i686

 

set to correct value

cat /etc/sysctl.conf | grep shmmax

4398046511104

cat /etc/sysctl.conf | grep port_range

net.ipv4.ip_local_port_range = 11000 65000


    3. DATABASE REQUIREMENT

 
 You need to create a new database for below configuration.

Change parameter optimizer_adaptive_features to false

SQL*Plus: Release 12.1.0.2.0 Production on Sat Dec 5 11:16:26 2020


Copyright (c) 1982, 2014, Oracle.  All rights reserved.

Connected to:

Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 - 64bit Production

With the Partitioning, OLAP, Advanced Analytics and Real Application Testing options

SQL> show parameter optimizer_adaptive_features


NAME                                 TYPE        VALUE

------------------------------------ ----------- ------------------------------

optimizer_adaptive_features          boolean     FALSE

SQL> alter system set optimizer_adaptive_features=FALSE scope=both;

System altered.

 

Comment # in oracle bash_profile

# export PATH

export TMP=/tmp

export TMPDIR=$TMP

#export ORACLE_UNQNAME=orauat

#export ORACLE_BASE=/u01/app/oracle

#export ORACLE_HOME=$ORACLE_BASE/product/12.1.0/dbhome_1

#export ORACLE_SID=orauat

export PATH=/usr/sbin:$PATH

export PATH=$ORACLE_HOME/bin:$PATH

export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib

export CLASSPATH=$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib

 

Make required directories

mkdir -p /data/oracle/product/bip/config/

mkdir -p /data/oracle/product/bip/cluster/

Change file permission

chmod 775 em13300_linux64.bin

As Oracle user run installer

./em13300_linux64.bin



4. INSTALLATION STEPS









the installation progress would take few hours to complete.

5 . CONCLUSTION

    basically OEM 13c installation is just few simple steps, we just need to ensure that the Database is the fresh installation, if it is an old database we don't recommend to use that, otherwise you will encounter some error during EM configuration steps. beside that, OEM installation directories must also be clean up if you need to install OEM software again. Good luck for your installation steps!

No comments:

Post a Comment