Oracle 11g in RHEL5.3
Create user: oracle Create group: oinstall,dba Add oinstall,dba to user oracle groupadd oinstall groupadd dba useradd oracle -g oinstall -G dba passwd oracle [ for OSDBA select dba group, OS users under this group will get SYSDBA privilege for OSOPER select oinstall group, OS users under this group will get SYSOPER privilege ] chown oracle /opt/oracle/ chgrp dba /opt/oracle/ increase "tmpfs(/dev/shm)" to >= "memory_max_target" (If use autometic memory management) unzip two disks in the same folder like below, o therwise some .ear file missing error may occur: ---------------------------------------- unzip linux_11gR2_database_1of2.zip unzip linux_11gR2_database_2of2.zip cd database ./runInstall ---------------------------- append below lines in file:/etc/sysctl.conf # Controls the maximum number of shared memory segments kernel.shmmni = 4096 kernel.sem = 250 32000 100 128 fs.file-max = 6815744 fs.aio-max-nr=1048576 net.ipv4.ip_local_port_range=9000 65500 net.core...