1. 檢查系統(tǒng)包
rpm -q compat-libstdc++-33 elfutils-libelf elfutils-libelf-devel glibc glibc-common glibc-devel gcc- gcc-c++ libaio-devel libaio libgcc libstdc++ libstdc++-devel make sysstat unixODBC unixODBC-devel pdksh5.2.14-
這里需要注意,rhel6里面沒有pdk5.2.14這個包,需要單獨下載,5版本的在光盤下面都可以找到。
ftp://ftp.pbone.net/mirror/archive.download.redhat.com/pub/redhat/linux/6.1/en/os/i386/RedHat/RPMS/pdksh-5.2.14-1.i386.rpm
附上下載地址
2. 修改內(nèi)核參數(shù)
先備份
cp /etc/sysctl.conf /etc/sysctl.conf.bk
修改,加入如下內(nèi)容
vi /etc/sysctl.conf
(這里和從前安裝10g時候的參數(shù)是不一樣的)
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
sysctl -p
3. 添加用戶和組。
groupadd dba
groupadd oinstall
useradd -g oinstall -G dba Oracle
passwd Oracle
4. 修改環(huán)境變量
linux
vi /home/Oracle/.bash_profile
export EDITOR=vi
export Oracle_SID=dex
export Oracle_BASE=/u01/apps/oracle
export Oracle_HOME=$ORACLE_BASE/product/11gr2/db_1
export nls_date_format="yyyy-mm-dd hh24:mi:ss"
export PATH=/u01/apps/Oracle/product/11gr2/db_1/bin:$PATH
5. 修改用戶限制
vi /etc/security/limits.conf
末尾加入
Oracle soft nproc 2047
Oracle hard nproc 16384
Oracle soft nofile 1024
Oracle hard nofile 65536
vi /etc/pam.d/login
末尾加入
session required /lib/security/pam_limits.so
6.編輯/etc/profile
vi /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
7. 建立目錄并且授權(quán)
mkdir -p /u01/apps/Oracle
chown -R Oracle:oinstall /u01
8. 最后驗證一下
su - Oracle
9. reboot,解壓,./runInstall
10. 祝你好運。
本文出自:億恩科技【mszdt.com】
服務(wù)器租用/服務(wù)器托管中國五強!虛擬主機域名注冊頂級提供商!15年品質(zhì)保障!--億恩科技[ENKJ.COM]
|