- 1、本文档共17页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
storage foundation for Linux Oracle RAC实例
Linux 5.3 + SF + Oracle RAC
Linux安装、配置
选择“自定义”安装
选择“java开发环境、支持老软件、系统管理”
安装java运行包:rpm -Uvh java-x64*
安装Oracle For Linux的升级补丁rpm -Uvh --force binutils-.6-9.0.1.el5.x86_64.rpm
在h1上,配置/etc/hosts,如:
# Do not remove the following line, or various programs
# that require network functionality will fail.
localhost.localdomain localhost
::1 localhost6.localdomain6 localhost6
# Public Network - (eth0)
1 h1
2 h2
3 h3
# Private Interconnect - (eth1)
1 h1-priv1
2 h2-priv1
3 h3-priv1
# Private Interconnect - (eth2)
1 h1-priv2
2 h2-priv2
3 h3-priv2
# Public Virtual IP (VIP) addresses - (eth0)
4 h2-vip
5 h2-vip
6 h3-vip
复制到h2、h3
[root@h1]#scp /etc/hosts @h2/etc
[root@h1]#scp /etc/hosts @h3/etc
新建Oracle用户及配置
h1-h3节点上分别执行:
创建oracle基本目录:
[root@h1-h3]# groupadd oinstall
[root@h1-h3]# groupadd dba
[root@h1-h3]# useradd -g oinstall -G dba -m -d /home/oracle -s /bin/bash oracle
[root@h1-h3]# passwd oracle
创建oracle基本目录:
[root@h1-h3]# mkdir -p /oracle/orabin/db_1
[root@h1-h3]# chown -R oracle:oinstall /oracle/orabin
[root@h1-h3]# chmod -R 775 /oracle/orabin
创建oracle集群组建目录:
[root@h1-h3]# mkdir -p /oracle/crs
[root@h1-h3]# chown -R oracle:oinstall /oracle/crs
[root@h1-h3]# chmod -R 775 /opt/oracle/crs
为 SF 集群件创建挂载点:
[root@h1-h3]# mkdir -p /oracle/oradata
[root@h1-h3]# chown -R oracle:oinstall /oracle/oradata
[root@h1-h3]# chmod -R 755 /oracle/oradata
为oracle 用户帐户创建登录脚本
注:当您为每个 Oracle RAC 节点设置 Oracle 环境变量时,请确保为每个 RAC 节点分配唯一的 Oracle SID,对于此示例,使用:
h1:ORACLE_SID=his1
h2:ORACLE_SID=his2
h3:ORACLE_SID=his3
在h1上执行:
向oracle用户家目录下的.bash_profile加入以下内容:
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
export JAVA_HOME=/usr/local/java
# User specific environment and startup programs
export ORACLE_BASE=/oracle/orabin
export ORACLE_HOME=$ORACLE_BASE/db_1
export ORA_CRS_HOME=/oracle/crs
export ORACLE_PAT
文档评论(0)