首页数据库Linux一键部署oracle安装环境脚本(推荐)

Linux一键部署oracle安装环境脚本(推荐)

时间2024-02-28 16:53:03发布访客分类数据库浏览363
导读:收集整理的这篇文章主要介绍了Linux一键部署oracle安装环境脚本(推荐 ,觉得挺不错的,现在分享给大家,也给大家做个参考。 具体代码如下所示:#!/bin/bash########...
收集整理的这篇文章主要介绍了Linux一键部署oracle安装环境脚本(推荐),觉得挺不错的,现在分享给大家,也给大家做个参考。

具体代码如下所示:

#!/bin/bash###############################################功能:PReparation for oracle Installation###参数:SID BASE###其中,sid指的是ORACLE_SID###BASE指的是ORACLE_BASE的一级目录,如ORACLE_BASE=/u01/app/oracle,则BASE为/u01#############################################检查参数个数是否正确if [ $# -ne 2 ];
then  echo "$0 SID BASE"  exITfiSID="$1"BASE="$2"#主机名绑定IP=`ifconfig |awk -F'[: ]+' 'NR==2{
print $4'}
`HOST=`hostname`sed -i '$a'$IP' '$HOST'' /etc/hosts#Checking the Package Requirements#将需要安装的表的列表贴在Package_list文件中awk -F'-[0-9]' '{
print $1}
' Package_list |awk '{
print $1}
    ' |uniq |xargs yum install -y >
     output.LOG 2>
    &
    1#Creating Required @R_406_1162@ting System Groups and Usersgroupadd -g 800 oinstallgroupadd -g 801 dbagroupadd -g 802 oPEruseradd -g oinstall -G dba,oper oracleecho oracle | passwd --stdin oracle >
    >
     output.log 2>
    &
    1#Configure Kernal Parameterssed -i '$a\fs.aio-max-nr = 1048576' /etc/sysctl.confsed -i '$a\fs.file-max = 6815744' /etc/sysctl.confsed -i '$a\kernel.shmall = 2097152' /etc/sysctl.confsed -i '$a\kernel.shmmax = 536870912' /etc/sysctl.confsed -i '$a\kernel.shmmni = 4096' /etc/sysctl.confsed -i '$a\kernel.SEM = 250 32000 100 128' /etc/sysctl.confsed -i '$a\net.ipv4.ip_local_port_range = 9000 65500' /etc/sysctl.confsed -i '$a\net.core.rmem_default = 262144' /etc/sysctl.confsed -i '$a\net.core.rmem_max = 4194304' /etc/sysctl.confsed -i '$a\net.core.wmem_default = 262144' /etc/sysctl.confsed -i '$a\net.core.wmem_max = 1048586' /etc/sysctl.confsysctl -p >
    >
     output.log 2>
    &
    1#Configure Resource Limitssed -i '$a\oracle      soft  nproc  2047' /etc/security/limits.confsed -i '$a\oracle      hard  nproc  16384' /etc/security/limits.confsed -i '$a\oracle      soft  nofile 1024' /etc/security/limits.confsed -i '$a\oracle      hard  nofile 65536' /etc/security/limits.conf#Add the following line to the /etc/PAM.d/login file, if it does not already exist:sed -i '$a\session  required   pam_limits.so' /etc/pam.d/login#Add the following line to the /etc/profilesed -i '$a\if [[ $USER = "oracle" ]];
     then' /etc/profilesed -i '$a\   if [[ $SHELL = "/bin/ksh" ]];
     then' /etc/profilesed -i '$a\       ulimit -p 16384' /etc/profilesed -i '$a\       ulimit -n 65536' /etc/profilesed -i '$a\   else' /etc/profilesed -i '$a\       ulimit -u 16384 -n 65536' /etc/profilesed -i '$a\   fi' /etc/profilesed -i '$a\fi' /etc/profilesource /etc/profile#Configuring the oracle User's environmentsed -i '$a\export ORACLE_SID='$SID'' /home/oracle/.bash_profilesed -i '$a\export ORACLE_BASE='$BASE'/app/oracle' /home/oracle/.bash_profilesed -i '$a\export ORACLE_HOME=$ORACLE_BASE/product/11.2.0/db_1' /home/oracle/.bash_profilesed -i '$a\export PATH=$ORACLE_HOME/bin:$PATH' /home/oracle/.bash_profilesource /home/oracle/.bash_profile#Creating Required Directoriesmkdir -p $ORACLE_HOMEchown -R oracle.oinstall $BASE/appchmod -R 775 $BASE/appecho "Preparation For Oracle Installation Is Over!"

总结

以上所述是小编给大家介绍的Linux一键部署oracle安装环境脚本,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!

您可能感兴趣的文章:
  • Oracle WebLogic Server 12.2.1.2安装部署教程
  • CentOS 6.3下安装部署Oracle服务器图文教程
  • 部署Oracle 12c企业版数据库( 安装及使用)
  • Oracle手动建库安装部署超详细教程

声明:本文内容由网友自发贡献,本站不承担相应法律责任。对本内容有异议或投诉,请联系2913721942#qq.com核实处理,我们将尽快回复您,谢谢合作!


若转载请注明出处: Linux一键部署oracle安装环境脚本(推荐)
本文地址: https://pptw.com/jishu/631690.html
windows中oracle存储过程加密的实例代码 oracle 身份证校验函数的实例代码

游客 回复需填写必要信息