转至:http://m.blog.csdn.net/weixin_35884835/article/details/52385077
1.修改用户的SHELL的限制,修改/etc/security/limits.conf文件
vi /etc/security/limits.conf 加入如下内容保存 oracle soft nproc 2047 oracle hard nproc 16384 oracle soft nofile 1024 oracle hard nofile 65536
2.修改/etc/pam.d/login 文件
vi /etc/pam.d/login 加入如下内容 session required /lib/security/pam_limits.so session required pam_limits.so
3.修改linux内核,修改/etc/sysctl.conf文件
vi /etc/sysctl.conf 加入如下内容 fs.file-max = 6815744 fs.aio-max-nr = 1048576 kernel.shmall = 2097152 kernel.shmmax = 2147483648 kernel.shmmni = 4096 kernel.sem = 250 32000 100 128 net.ipv4.ip_local_port_range = 9000 65500 net.core.rmem_default = 4194304 net.core.rmem_max = 4194304 net.core.wmem_default = 262144 net.core.wmem_max = 1048576
4.要使 /etc/sysctl.conf 更改立即生效,执行以下命令
sysctl -p
5.编辑 /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
6.创建相关用户和组,作为软件安装和支持组的拥有者。
groupadd oinstall groupadd dba useradd -g oinstall -g dba -m oracle passwd oracle
7.创建数据库软件目录和数据文件存放目录
mkdir /home/oracle/app mkdir /home/oracle/app/oracle mkdir /home/oracle/app/oradata mkdir /home/oracle/app/oracle/product
8.更改目录属主为Oracle用户所有
chown -R oracle:oinstall /home/oracle/app
9.配置oracle用户的环境变量
su – oracle vi .bash_profile 加入如下内容 umask 022 export ORACLE_BASE=/home/oracle/app export ORACLE_HOME=$ORACLE_BASE/oracle/product/11.2.0/dbhome_1 export ORACLE_SID=orcl export PATH=$PATH:$HOME/bin:$ORACLE_HOME/bin export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/usr/lib