RedHatAS4安装Oracle9i参数设置

安装补丁p3006854_9204_LINUX.zip


编辑/etc/sysctl.conf
kernel.shmmax = 2147483648  公式:1024*1024*RAM(M)/2 (至少)。
kernel.shmmni = 128
kernel.shmall = 2097152
kernel.sem = 250 32000 100 128
fs.file-max = 65536
net.ipv4.ip_local_port_range = 1024 65000

编辑 /etc/security/limits.conf 加入以下几行
oracle soft nofile 65536
oracle hard nofile 65536
oracle soft nproc 16384
oracle hard nproc 16384


编辑home/.bash_profile

# .bash_profile
ORACLE_BASE=/opt/oracle; export ORACLE_BASE
ORACLE_HOME=$ORACLE_BASE/product/9.2.0; export ORACLE_HOME
ORACLE_TERM=xterm; export ORACLE_TERM
PATH=$ORACLE_HOME/bin:$PATH; export PATH
ORACLE_OWNER=oracle; export ORACLE_OWNER
ORACLE_SID=TSH1; export ORACLE_SID
export NLS_LANG=american_america.ZHS16GBK
LD_LIBRARY_PATH=$ORACLE_HOME/lib; export LD_LIBRARY_PATH
CLASSPATH=$ORACLE_HOME/JRE:$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib
CLASSPATH=$CLASSPATH:$ORACLE_HOME/network/jlib; export CLASSPATH
LD_ASSUME_KERNEL=2.4.1; export LD_ASSUME_KERNEL
TMP=/tmp; export TMP
TMPDIR=$TMP; export TMPDIR


安装oracle时如果出现中文乱码
使用命令 unset LANG
这样就使用英文界面安装。
 

你可能感兴趣的:(RedHatAS4安装Oracle9i参数设置)