设为首页 收藏本站
查看: 511|回复: 0

[经验分享] 安装Oracle 11g R2 RAC-Linux一万小时

[复制链接]

尚未签到

发表于 2018-9-21 12:39:59 | 显示全部楼层 |阅读模式
  一、准备单实例数据库服务器
  1、准备操作系统
  注:建议安装oracle数据库使用oracle linux操作系统,本实例以oracle linux 6.8做为操作系统。
  #关闭iptables
  chkconfig iptables off
  #关闭selinux
  vim /etc/sysconfig/selinux
  SELINUX=disabled
  #将主机名添加到hosts文件
  vim /etc/hosts
  188.188.1.141 scan-cluster.localdomain scan-cluster
  188.188.1.142 oraclerac01.localdomain oraclerac01
  188.188.1.144 oraclerac01-vip.localdomain oraclerac01-vip
  10.10.1.142 oraclerac01-priv.localdomain oraclerac01-priv
  188.188.1.143 oraclerac02.localdomain oraclerac02
  188.188.1.145 oraclerac02-vip.localdomain oraclerac02-vip
  10.10.1.143 oraclerac02-priv.localdomain oraclerac02-priv
  #重启服务器
  reboot
  2、初始化操作系统,执行以下脚本
  #用户初始化脚本preusers.sh
  注:节点2需要更改ORACLE_SID、ORACLE_HOSTNAME
  ----------------------------------------------------------------------------------------------------------------------------
  #!/bin/bash
  #Purpose:Create 6 groups named 'oinstall','dba','asmadmin','asmdba','asmoper','oper', plus 2 users named 'oracle','grid'.
  #Also setting the Environment
  #variable for oracle user.
  #variable for grid user.
  #Usage:Log on as the superuser('root'),and then execute the command:#./1preusers.sh
  #Author:Asher Huang
  echo "Now create 6 groups named 'oinstall','dba','asmadmin','asmdba','asmoper','oper'"
  echo "Plus 2 users named 'oracle','grid',Also setting the Environment"
  groupadd -g 1000 oinstall
  groupadd -g 1200 asmadmin
  groupadd -g 1201 asmdba
  groupadd -g 1202 asmoper
  useradd -u 1100 -g oinstall -G asmadmin,asmdba,asmoper -d /home/grid -s /bin/bash -c "grid Infrastructure Owner" grid
  echo "grid" | passwd --stdin grid
  #echo 'export PS1="`/bin/hostname -s`-> "'>> /home/grid/.bash_profile
  echo "export TMP=/tmp">> /home/grid/.bash_profile
  echo 'export TMPDIR=$TMP'>>/home/grid/.bash_profile
  echo "export ORACLE_SID=+ASM1">> /home/grid/.bash_profile
  echo "export ORACLE_BASE=/u01/app/grid">> /home/grid/.bash_profile
  echo "export ORACLE_HOME=/u01/app/11.2.0/grid">> /home/grid/.bash_profile
  echo "export ORACLE_TERM=xterm">> /home/grid/.bash_profile
  echo "export NLS_DATE_FORMAT='yyyy/mm/dd hh24:mi:ss'" >> /home/grid/.bash_profile
  echo 'export TNS_ADMIN=$ORACLE_HOME/network/admin'  >> /home/grid/.bash_profile
  echo 'export PATH=/usr/sbin:$PATH'>> /home/grid/.bash_profile
  echo 'export PATH=$ORACLE_HOME/bin:$PATH'>> /home/grid/.bash_profile
  echo 'export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib'>> /home/grid/.bash_profile

  echo 'export>  echo "export EDITOR=vi" >> /home/grid/.bash_profile
  echo "export" >> /home/grid/.bash_profile
  echo "export NLS_LANG=american_america.AL32UTF8" >> /home/grid/.bash_profile
  echo "umask 022">> /home/grid/.bash_profile
  groupadd -g 1300 dba
  groupadd -g 1301 oper
  useradd -u 1101 -g oinstall -G dba,oper,asmdba -d /home/oracle -s /bin/bash -c "Oracle Software Owner" oracle
  echo "oracle" | passwd --stdin oracle
  #echo 'export PS1="`/bin/hostname -s`-> "'>> /home/oracle/.bash_profile
  echo "export TMP=/tmp">> /home/oracle/.bash_profile
  echo 'export TMPDIR=$TMP'>>/home/oracle/.bash_profile
  echo "export ORACLE_HOSTNAME=oraclerac01.localdomain">> /home/oracle/.bash_profile
  echo "export ORACLE_SID=bbsvr1">> /home/oracle/.bash_profile
  echo "export ORACLE_BASE=/u01/app/oracle">> /home/oracle/.bash_profile
  echo 'export ORACLE_HOME=$ORACLE_BASE/product/11.2.0/db_1'>> /home/oracle/.bash_profile
  echo "export ORACLE_UNQNAME=bbsvr">> /home/oracle/.bash_profile
  echo 'export TNS_ADMIN=$ORACLE_HOME/network/admin'  >> /home/oracle/.bash_profile
  echo "export ORACLE_TERM=xterm">> /home/oracle/.bash_profile
  echo 'export PATH=/usr/sbin:$PATH'>> /home/oracle/.bash_profile
  echo 'export PATH=$ORACLE_HOME/bin:$PATH'>> /home/oracle/.bash_profile
  echo 'export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib'>> /home/oracle/.bash_profile

  echo 'export>  echo "export EDITOR=vi" >> /home/oracle/.bash_profile
  echo "export" >> /home/oracle/.bash_profile
  echo "export NLS_LANG=american_america.AL32UTF8" >> /home/oracle/.bash_profile
  echo "export NLS_DATE_FORMAT='yyyy/mm/dd hh24:mi:ss'" >> /home/oracle/.bash_profile
  echo "umask 022">> /home/oracle/.bash_profile
  echo "The Groups and users has been created"
  echo "The Environment for grid,oracle also has been set successfully"
  ----------------------------------------------------------------------------------------------------------------------------
  #创建目录脚本predir.sh
  ----------------------------------------------------------------------------------------------------------------------------
  #!/bin/bash
  #Purpose:Create the necessary directory for oracle,grid users and change the authention to oracle,grid users.
  #Usage:Log on as the superuser('root'),and then execute the command:#./2predir.sh
  #Author:Asher Huang
  echo "Now create the necessary directory for oracle,grid users and change the authention to oracle,grid users..."
  mkdir -p /u01/app/grid
  mkdir -p /u01/app/11.2.0/grid
  mkdir -p /u01/app/oracle
  chown -R oracle:oinstall /u01
  chown -R grid:oinstall /u01/app/grid
  chown -R grid:oinstall /u01/app/11.2.0
  chmod -R 775 /u01
  echo "The necessary directory for oracle,grid users and change the authention to oracle,grid users has been finished"
  ----------------------------------------------------------------------------------------------------------------------------
  #修改limits脚本prelimits.sh
  ----------------------------------------------------------------------------------------------------------------------------
  #!/bin/bash
  #Purpose:Change the /etc/security/limits.conf.
  #Usage:Log on as the superuser('root'),and then execute the command:#./3prelimits.sh
  #Author:Asher Huang
  echo "Now modify the /etc/security/limits.conf,but backup it named /etc/security/limits.conf.bak before"
  cp /etc/security/limits.conf /etc/security/limits.conf.bak
  echo "oracle soft nproc 2047" >>/etc/security/limits.conf
  echo "oracle hard nproc 16384" >>/etc/security/limits.conf
  echo "oracle soft nofile 1024" >>/etc/security/limits.conf
  echo "oracle hard nofile 65536" >>/etc/security/limits.conf
  echo "grid soft nproc 2047" >>/etc/security/limits.conf
  echo "grid hard nproc 16384" >>/etc/security/limits.conf
  echo "grid soft nofile 1024" >>/etc/security/limits.conf
  echo "grid hard nofile 65536" >>/etc/security/limits.conf
  echo "Modifing the /etc/security/limits.conf has been succeed."
  ----------------------------------------------------------------------------------------------------------------------------
  #修改login脚本prelogin.sh
  ----------------------------------------------------------------------------------------------------------------------------
  #!/bin/bash
  #Purpose:Modify the /etc/pam.d/login.
  #Usage:Log on as the superuser('root'),and then execute the command:#./4prelimits.sh
  #Author:Asher Huang
  echo "Now modify the /etc/pam.d/login,but with a backup named /etc/pam.d/login.bak"
  cp /etc/pam.d/login /etc/pam.d/login.bak
  echo "session required /lib/security/pam_limits.so" >>/etc/pam.d/login
  echo "session required pam_limits.so" >>/etc/pam.d/login
  echo "Modifing the /etc/pam.d/login has been succeed."
  ----------------------------------------------------------------------------------------------------------------------------
  #修改profile脚本preprofile.sh
  ----------------------------------------------------------------------------------------------------------------------------
  #!/bin/bash
  #Purpose:Modify the /etc/profile.
  #Usage:Log on as the superuser('root'),and then execute the command:#./5preprofile.sh
  #Author:Asher Huang
  echo "Now modify the  /etc/profile,but with a backup named  /etc/profile.bak"
  cp /etc/profile /etc/profile.bak
  echo 'if [ $USER = "oracle" ]||[ $USER = "grid" ]; then' >>  /etc/profile
  echo 'if [ $SHELL = "/bin/ksh" ]; then' >> /etc/profile
  echo 'ulimit -p 16384' >> /etc/profile
  echo 'ulimit -n 65536' >> /etc/profile
  echo 'else' >> /etc/profile
  echo 'ulimit -u 16384 -n 65536' >> /etc/profile
  echo 'fi' >> /etc/profile
  echo 'fi' >> /etc/profile
  echo "Modifing the /etc/profile has been succeed."
  ----------------------------------------------------------------------------------------------------------------------------
  #修改内核参数脚本presysctl.sh
  ----------------------------------------------------------------------------------------------------------------------------
  #!/bin/bash
  #Purpose:Modify the /etc/sysctl.conf.
  #Usage:Log on as the superuser('root'),and then execute the command:#./6presysctl.sh
  #Author:Asher Huang
  echo "Now modify the /etc/sysctl.conf,but with a backup named /etc/sysctl.bak"
  cp /etc/sysctl.conf /etc/sysctl.conf.bak
  echo "fs.aio-max-nr = 1048576" >> /etc/sysctl.conf
  echo "fs.file-max = 6815744" >> /etc/sysctl.conf
  echo "kernel.shmall = 2097152" >> /etc/sysctl.conf
  echo "kernel.shmmax = 1054472192" >> /etc/sysctl.conf
  echo "kernel.shmmni = 4096" >> /etc/sysctl.conf
  echo "kernel.sem = 250 32000 100 128" >> /etc/sysctl.conf
  echo "net.ipv4.ip_local_port_range = 9000 65500" >> /etc/sysctl.conf
  echo "net.core.rmem_default = 262144" >> /etc/sysctl.conf
  echo "net.core.rmem_max = 4194304" >> /etc/sysctl.conf
  echo "net.core.wmem_default = 262144" >> /etc/sysctl.conf
  echo "net.core.wmem_max = 1048586" >> /etc/sysctl.conf
  echo "net.ipv4.tcp_wmem = 262144 262144 262144" >> /etc/sysctl.conf
  echo "net.ipv4.tcp_rmem = 4194304 4194304 4194304" >> /etc/sysctl.conf
  echo "Modifing the /etc/sysctl.conf has been succeed."
  echo "Now make the changes take effect....."
  sysctl -p
  ----------------------------------------------------------------------------------------------------------------------------
  3、配置ASM磁盘组
  注:由于oracle rac使用了asm存储数据文件,单实例数据库也使用asm存储数据库文件,磁盘组需要与RAC磁盘组一致,方便还原
  #磁盘分区
  fdisk /dev/sd*
  n-p-1-w
  #安装asm
  yum install -y kmod-oracleasm-2.0.8-13.el6_8.x86_64.rpm oracleasmlib-2.0.4-1.el6.x86_64.rpm oracleasm-support-2.1.8-1.el6.x86_64.rpm
  #创建asm磁盘
  ----------------------------------------------------------------------------------------------------------------------------
  # oracleasm status
  # oracleasm configure -i
  Configuring the Oracle ASM library driver.
  This will configure the on-boot properties of the Oracle ASM library
  driver.  The following questions will determine whether the driver is
  loaded on boot and what permissions it will have.  The current values
  will be shown in brackets ('[]').  Hitting  without typing an
  answer will keep that current value.  Ctrl-C will abort.
  Default user to own the driver interface []: grid
  Default group to own the driver interface []: asmadmin
  Start Oracle ASM library driver on boot (y/n) [n]: y
  Scan for Oracle ASM disks on boot (y/n) [y]: y
  Writing Oracle ASM library driver configuration: done
  # oracleasm init
  # oracleasm configure
  # oracleasm listdisks
  # oracleasm createdisk VOL1 /dev/sdb1
  # oracleasm querydisk /dev/sd*
  ----------------------------------------------------------------------------------------------------------------------------
  #另一节点挂载asm磁盘
  # oracleasm scandisks
  # oracleasm listdisks
  4、安装必备rpm
  yum install -y binutils elfutils-libelf glibc compat-libstdc++-33.x86_64 libgcc unixODBC  glibc.i686 elfutils-libelf-devel gcc-c++ libaio-devel libstdc++-devel unixODBC-devel pdksh xorg-x11-* compat-libcap1 ksh-20100621
  5、配置2节点oracle、grid互相ssh免密码登录
  #配置oracle,grid用户类似配置
  su - oracle
  ssh-keygen -t rsa
  ssh-keygen -t dsa
  cat .ssh/id_dsa.pub >>authorized_keys
  cat .ssh/id_rsa.pub >>authorized_keys
  #另一节点的id_dsa.pub、id_rsa.pub的内容也添加到authorized_keys,并将authorized_keys传到另一节点
  ssh oraclerac02
  ssh oraclerac01-priv
  ssh oraclerac01
  ssh oraclerac01.localdomain
  ssh oraclerac01-priv.localdomain
  ssh oraclerac02
  ssh oraclerac02-priv.localdomain
  ssh oraclerac02.localdomain
  ssh oraclerac02-priv
  6、安装grid
  注:新打开一个未登录xshell窗口,使用grid账户登录,如果直接从root切换到grid账户,则xshell无法打开安装grid图像化界面
  ssh grid@188.188.1.120
  cd grid/
  #检查配置
  ./runcluvfy.sh stage -pre crsinst -n oraclerac01,oraclerac02 -fixup -verbose
  ./runInstaller
  #创建和rac数据库一样的磁盘组
  asmca
  7、安装oracle,只需安装软件,不创建数据库
  注:新打开一个未登录xshell窗口,使用oracle账户登录,如果直接从root切换到oracle账户,则xshell无法打开安装oracle图像化界面
  ssh oracle@188.188.1.120
  cd database/
  ./runInstaller
  #创建数据库
  dbca


运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.iyunv.com/thread-599429-1-1.html 上篇帖子: 安装Oracle 11g R2 RAC DataGuard-Linux一万小时 下篇帖子: oracle数据库学习1
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表