redhat6.4简易安装oracle12C-创新互联

这里只是把安装用到的三个脚本贴出来,详细安装文档请下载附件

创新互联建站服务项目包括英山网站建设、英山网站制作、英山网页制作以及英山网络营销策划等。多年来,我们专注于互联网行业,利用自身积累的技术优势、行业经验、深度合作伙伴关系等,向广大中小型企业、政府机构等提供互联网行业的解决方案,英山网站推广取得了明显的社会效益与经济效益。目前,我们服务的客户以成都为中心已经辐射到英山省份的部分城市,未来相信会继续扩大服务区域并继续获得客户的支持与信任!

service_close.sh

 说明:安装好系统后关闭不必须的服务

#!/bin/bash
#description :the script is used to close some unnecessary services
#by lineqi
#2014-06-28
chkconfig --level 2345 NetworkManager off
service NetworkManager stop

chkconfig --level 2345 cups off
service cups stop

chkconfig --level 2345 ip6tables off
service ip6tables stop

chkconfig --level 345 netfs off
service netfs stop

chkconfig --level 345 nfslock off
service nfslock stop

chkconfig --level 2345 postfix off
service postfix stop

chkconfig --level 2345 iptables off
service iptables stop

set_userinfo.sh

说明:设置oracle用户信息及安装目录

#!/bin/bash
#description:this script used to create a oracle groups user user environment settings the installation directory
#by lineqi
#2014-07-26

#Add oracle groups
groupadd -g 501 oinstall
groupadd -g 502 dba
groupadd -g 503 oper

#Add oracle user and Seting a oracle user password
useradd -u 502 -g oinstall -G dba,oper oracle;echo "oracle"|passwd --stdin oracle

#Seting a oracle user password
#passwd oracle<#oracle
#oracle
#EOF

#mkdir the oracle installation directory
mkdir -p /u01/app/oracle
mkdir -p /u01/app/oraInventory
chmod -R 777 /u01/app
chown -R oracle:oinstall /u01/app/

#Add the following content to /home/oracle/.bash_profile
cat>>/home/oracle/.bash_profile<export ORACLE_SID=orcl
export ORACLE_BASE=/u01/app/oracle
export ORACLE_HOME=/u01/app/oracle/product/12.1.0/dbhome_1
export PATH=\$ORACLE_HOME/bin:.:\$PATH
export NLS_LANG=AMERICAN_AMERICA.ZHS16GBK
export ORACLE_UNQNAME=orcl
EOF
su - oracle -c ". .bash_profile"

set_para.sh

说明:设置安装oracle时所需要的参数

#!/bin/bash
#description:this script is used to set the oracle installation environment parameters
#by lineqi
#2014-07-26

#Add the following contents to /etc/security/limits.conf

cat>>/etc/security/limits.conf<#for oracle
oracle          soft   nproc          2047
oracle          hard   nproc          16384
oracle          soft   nofile         1024
oracle          hard   nofile         65536
oracle          soft   stack          10240
oracle          hard   stack          10240
EOF
sleep 2

#Add the following contents to /etc/pam.d/login

cat>>/etc/pam.d/login<# for oracle
session   required    pam_limits.so
EOF

sleep 1

#Add the following contents to /etc/sysctl.conf

cat>>/etc/sysctl.conf<# for oracle
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 = 1048576
fs.aio-max-nr = 1048576
fs.file-max = 6815744
EOF
sysctl -p >>/dev/null 2>&1

#Add the following contents to /etc/profile

cat>>/etc/profile<# for oracle
if [ \$USER = "oracle" ]; then
if [ \$SHELL = "/bin/ksh" ]; then
ulimit -p 16384
ulimit -n 65536
else
ulimit -u 16384 -n 65536
fi
umask 022
fi
EOF

#Replace the following contents to /etc/selinux/config
sed -i "s/SELINUX=enforcing/SELINUX=disabled/g" `grep SELINUX=enforcing -rl /etc/selinux/config`

附件:http://down.51cto.com/data/2364856

另外有需要云服务器可以了解下创新互联cdcxhl.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。


网页题目:redhat6.4简易安装oracle12C-创新互联
链接分享:http://scyanting.com/article/ceedio.html