失效链接处理 |
Oracle 12c RAC安装与运维说明手册 PDF 下载
本站整理下载:
相关截图:
主要内容:
1 安装前准备
1.1 修改用户 profile
1.1.1 修改 grid 用户的.profile
节点 1
# su - grid
$ vi $HOME/.profile
if [ -t 0 ]; then
stty intr ^C
fi
umask 022
export AIXTHREAD_SCOPE=S
PATH=/usr/bin:/etc:/usr/sbin:/usr/ucb:$HOME/bin:/usr/bin/X11:/sbin:.
export PATH
export ORACLE_SID=+ASM1
export ORACLE_BASE=/oracle/app/grid
export ORACLE_HOME=/oracle/app/12.1.0/grid
export PATH=$ORACLE_HOME/bin:$ORACLE_HOME/OPatch:$PATH
if [ -s "$MAIL" ] # This is at Shell startup. In normal
then echo "$MAILMSG" # operation, the Shell checks
fi # periodically.
节点 2
# su - grid
$ vi $HOME/.profile
if [ -t 0 ]; then
stty intr ^C
fi
更多 IT 认证课程请访问 美河学习在线 www.eimhe.com
umask 022
export AIXTHREAD_SCOPE=S
PATH=/usr/bin:/etc:/usr/sbin:/usr/ucb:$HOME/bin:/usr/bin/X11:/sbin:.
export PATH
export ORACLE_SID=+ASM2
export ORACLE_BASE=/oracle/app/grid
export ORACLE_HOME=/oracle/app/12.1.0/grid
export PATH=$ORACLE_HOME/bin:$ORACLE_HOME/OPatch:$PATH
if [ -s "$MAIL" ] # This is at Shell startup. In normal
then echo "$MAILMSG" # operation, the Shell checks
fi # periodically.
重新登录所有用户 grid,以使.profile 生效。
1.1.2 修改 oracle 用户的.profile
节点 1
# su - oracle
$ vi $HOME/.profile
if [ -t 0 ]; then
stty intr ^C
fi
umask 022
export AIXTHREAD_SCOPE=S
PATH=/usr/bin:/etc:/usr/sbin:/usr/ucb:$HOME/bin:/usr/bin/X11:/sbin:.
export PATH
export ORACLE_SID= ORACIPS1
export ORACLE_BASE=/oracle/app/oracle
export ORACLE_HOME=$ORACLE_BASE/product/12.1.0/dbhome_1
export PATH=$ORACLE_HOME/bin:$ORACLE_HOME/OPatch:$PATH
export ORACLE_UNQNAME=ORACIPS
if [ -s "$MAIL" ] # This is at Shell startup. In normal
then echo "$MAILMSG" # operation, the Shell checks
fi # periodically
|