Install Oracle19c On Redhat 8

preview_player
Показать описание
Install Oracle EE DB 19c software only on Redhat 8.7 installed on Vbox .

Reference :
1- download oracle OTN :
2- Install guide :
3- Database Release Notes( issues)
Рекомендации по теме
Комментарии
Автор

Please share the command which u had in notepad. It will be useful

swethaswetha
Автор

Unable to find a match: libnsl2-devel? Any solution plz?

samivic_
Автор

Thank you for this. Been struggling with the installation. Will this method work on Redhat 9?

kunihiramuchwa
Автор

Can you share your installation file/document?

balochcode
Автор

So, here is the notepad with commands:

1.2- Group/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
useradd -u 54321 -g oinstall -G dba, backupdba, dgdba, kmdba, oper oracle
passwd oracle
id -a oracle


1.3-kenel:

vi /etc/sysctl.conf

kernel.shmall = 2097152
kernel.shmmax = 2147483648
kernel.sem = 250 32000 100 128
kernel.shmmni = 4096
kernel.panic_on_oops = 1
fs.file-max = 6815744
fs.aio-max-nr = 1048576
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

sysctl -p


1.4 Packages:

yum install -y bc
yum install -y binutils
yum install -y elfutils-libelf
yum install -y elfutils-libelf-devel
yum install -y fontconfig-devel
yum install -y glibc
yum install -y glibc-devel
yum install -y ksh
yum install -y libaio
yum install -y libaio-devel
yum install -y libXrender
yum install -y libX11
yum install -y libXau
yum install -y libXi
yum install -y libXtst
yum install -y libgcc
yum install -y libnsl
yum install -y librdmacm
yum install -y libstdc++
yum install -y libstdc++-devel
yum install -y libxcb
yum install -y libibverbs
yum install -y make
yum install -y policycoreutils
yum install -y policycoreutils-python-utils
yum install -y smartmontools
yum install -y sysstat
yum install -y ipmiutil
yum install -y libns12
yum install -y libns12-devel
yum install -y libvirt-libs
yum install -y net-tools
yum install -y nfs-utils

1.5 - Enviroment:
vi /etc/security/limits.conf

oracle soft nproc 2047
oracle hard nproc 16384
oracle soft noprofile 1024
oracle hard noprofile 65536
oracle soft stack 10240
oracle gard stack 32768

1.6 OFA directories:

mkdir -p
mkdir -p /u01/app/oraInventory
chown -R oracle:oinstall /u01/app/oracle
chown -R oracle:oinstall /u01/app/oracle
mkdir -p /u02/oradata
chown -R oracle:oinstall /u02/oradata
chmod -R 775 /u01/app
chmod -R 775 /u02/oradata

2 - run installer:

cd
unzip -q /tmp/db_home.zip
./runInstaller
./runInstaller -appyRU {lates RU } -applyOneOffs {latest ocw or ojvm or other, comma for multi patches }
export CV_ASSUME_DISTID=RHEL8.0

matheussalvador