Ensure that /etc/hosts and /etc/oraInst.loc are set right:
[oracle@erp ~]$ cat /etc/hosts # Do not remove the following line, or various programs # that require network functionality will fail. 127.0.0.1 localhost.localdomain localhost 192.168.1.50 erp.freeoraclehelp.com erp [oracle@erp ~]$ cat /etc/oraInst.loc inventory_loc=/oracle/erp/R12/oraInventory inst_group=oinstall [oracle@erp ~]$
Create OS User:
# groupadd oinstall -g 2000 # useradd -g oinstall -u 2000 oracle # chown -R oracle:oinstall /oracleSet Kernel Parameters:
[root@erp ~]# tail /etc/sysctl.conf # Oracle Recommendations for Apps # kernel.shmall = 2097152 kernel.shmmax = 4294967295 kernel.shmmni = 4096 kernel.sem = 256 32000 100 142 fs.file-max = 131072 net.ipv4.ip_local_port_range = 10000 65000 kernel.msgmni = 2878 kernel.msgmax = 8192 kernel.msgmnb = 65535 net.core.rmem_default = 262144 net.core.wmem_default = 262144 net.core.rmem_max = 4194304 net.core.wmem_max = 262144 # Oracle Recommendations for Apps # [root@erp ~]# sysctl -pIncrease user limits: Add the following to /etc/security/limits.conf
* hard nofile 65535 * soft nofile 4096 * hard nproc 16384 * soft nproc 2047Add the following to /etc/profile
if [ $USER = "oracle" ]; then if [ $SHELL = "/bin/ksh" ]; then ulimit -p 16384 ulimit -n 65536 else ulimit -u 16384 -n 65536 fi fi
Ensure the following RPMs are installed:
compat-db-4.1.25-9
compat-gcc-32-3.2.3-47.3
compat-gcc-32-c++-3.2.3-47.3
compat-libgcc-296-2.96-132.7.2
compat-libstdc++-296-2.96-132.7.2
compat-libstdc++-33-3.2.3-47.3
xorg-x11-deprecated-libs-devel-6.8.1-23.EL
xorg-x11-deprecated-libs-6.8.1-23.EL
openmotif-2.1.30-x
compat-db-4.1.25-9
compat-gcc-32-3.2.3-47.3
compat-gcc-32-c++-3.2.3-47.3
compat-libgcc-296-2.96-132.7.2
compat-libstdc++-296-2.96-132.7.2
compat-libstdc++-33-3.2.3-47.3
xorg-x11-deprecated-libs-devel-6.8.1-23.EL
xorg-x11-deprecated-libs-6.8.1-23.EL
openmotif-2.1.30-x
[root@erp RPM_OEL4]# ls -ltr total 8 -rwxr-xr-x 1 root root 5814 Feb 5 2011 p4198954_40_LINUX.zip [root@erp RPM_OEL4]# pwd /dumps/ERP/11i/RPM_OEL4 [root@erp RPM_OEL4]# unzip p4198954_40_LINUX.zip Archive: p4198954_40_LINUX.zip inflating: compat-libcwait-2.1-1.i386.rpm inflating: compat-oracle-rhel4-1.0-5.i386.rpm inflating: README.txt [root@erp RPM_OEL4]# rpm -ivh compat-* Preparing... ########################################### [100%] 1:compat-oracle-rhel4 ########################################### [ 50%] 2:compat-libcwait ########################################### [100%] [root@erp RPM_OEL4]#