centos 6.4下安装oracle 11hg rac 参数
admin
2023-05-04 18:41:53
0

cat /etc/security/limits.conf <

grid soft nproc 2047
grid hard nproc 16384
grid soft nofile 1024
grid hard nofile 65536
oracle soft nproc 2047
oracle hard nproc 16384
oracle soft nofile 1024
oracle hard nofile 65536

EOF


echo "session required /lib64/security/pam_limits.so"  >> /etc/pam.d/login

echo "options hangcheck-timer hangcheck_tick=30 hangcheck_margin=180    ###  检查hangcheck是否成功启动" >> /etc/modprobe.d/modprobe.conf


/sbin/modprobe hangcheck_timer    ### 启动hangcheck

#grep hangcheck /var/log/messages | tail -2 

禁用 /etc/selinux/config 和iptables


cat /ect/profile <

if [ \$USER = "oracle" ] || [ \$USER = "grid" ]; then
   if [ \$SHELL = "/bin/ksh" ]; then
     ulimit -p 16384
     ulimit -n 65536
else
    ulimit -u 16384 -n 65536
fi
umask 022
fi

EOF



####Oracle服务器上安装kmod-oracleasm文件:
cd /etc/yum.repos.d/
wget http://public-yum.oracle.com/public-yum-ol6.repo
wget http://public-yum.oracle.com/RPM-GPG-KEY-oracle-ol6 -O /etc/pki/rpm-gpg/RPM-GPG-KEY-oracle

yum install kmod-oracleasm


###oracle yum 安装:
 yum install -y binutils compat-libstdc++-33 elfutils-libelf elfutils-libelf-devel glibc \
glibc-common glibc-devel gcc gcc-c++ libaio-devel \
libaio libaio-devel libgcc libstdc++ libstdc++-devel make sysstat unixODBC unixODBC-devel \
pdksh numactl-devel glibc-headers


groupadd -g 501 oinstall
groupadd -g 502 dba
groupadd -g 504 asmadmin
groupadd -g 506 asmdba
groupadd -g 507 asmoper


useradd -u 1000 -g oinstall -G dba,asmdba oracle
useradd -u 1006 -g oinstall -G asmadmin,asmdba,asmoper grid

mkdir -p /u01/app
chown -R grid:oinstall /u01/app/
chmod -R 775 /u01/app/


mkdir -p /u01/app/oraInventory
chown -R grid:oinstall /u01/app/oraInventory
chmod -R 775 /u01/app/oraInventory

mkdir -p /u01/app/grid
mkdir -p /u01/app/oracle

chown -R grid:oinstall /u01/app/grid
chown -R oracle:oinstall /u01/app/oracle

chmod -R 775 /u01/app/oracle
chmod -R 775 /u01/app/grid

###asmlib 创建:

/etc/init.d/oracleasm start
/etc/init.d/oracleasm enable


/etc/init.d/oracleasm configure
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
Initializing the Oracle ASMLib driver: [  OK  ]
Scanning the system for Oracle ASMLib disks: [  OK  ]

[root@rac2 modprobe.d]# .
Marking disk "ocrvdisk1" as an ASM disk: [  OK  ]
[root@rac2 modprobe.d]# /etc/init.d/oracleasm createdisk ocrvdisk2 /dev/sdb1
Marking disk "ocrvdisk2" as an ASM disk: [  OK  ]
[root@rac2 modprobe.d]# /etc/init.d/oracleasm createdisk ocrvdisk3 /dev/sde1
Marking disk "ocrvdisk3" as an ASM disk: [  OK  ]
[root@rac2 modprobe.d]# /etc/init.d/oracleasm createdisk dbfile1 /dev/sdd1
Marking disk "dbfile1" as an ASM disk: [  OK  ]
[root@rac2 modprobe.d]# /etc/init.d/oracleasm createdisk fra1 /dev/sdf1
Marking disk "fra1" as an ASM disk: [  OK  ]


####停止ntpd
service ntpd stop
mv /etc/ntp.conf /etc/ntp.conf.bak
chkconfig ntpd off


cat>> /home/grid/.bash_profile<< EOF

export TMP=/tmp;
export TMPDIR=$TMP;
export ORACLE_HOSTNAME=rac1;
export ORACLE_SID=+ASM1;
export ORACLE_BASE=/u01/app/grid;
export ORACLE_HOME=/u01/app/11.2.0/grid;
export NLS_DATE_FORMAT="yy-mm-dd HH24:MI:SS";
export ORACLE_TERM=xterm
export TNS_ADMIN=$ORACLE_HOME/network/admin

export PATH=/usr/sbin:$PATH
export PATH=$ORACLE_HOME/bin:$PATH;
export NLS_LANG=american_america.AL32UTF8;
export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib
export CLASSPATH=$ORACLE_HOME/JRE:$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib
export EDITOR=vi
export LANG=en_US
umask 022

EOF


cat>> /home/oracle/.bash_profile<< EOF

export TMP=/tmp;
export TMPDIR=$TMP;
export ORACLE_HOSTNAME=rac1;
export ORACLE_BASE=/u01/app/oracle;
export ORACLE_HOME=/u01/app/oracle/product/11.2.0/db_1;
export ORACLE_PATH=/u01/app/common/oracle/sql;
export ORACLE_UNQNAME=racdb;
export ORACLE_SID=racdb1;
export ORACLE_TERM=xterm;
export PATH=/usr/sbin:$PATH;
export PATH=$ORACLE_HOME/bin:$PATH;
export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib;
export CLASSPATH=$ORACLE_HOME/JRE:$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib;
export NLS_DATE_FORMAT="yy-mm-dd HH24:MI:SS";
export NLS_LANG=AMERICAN_AMERICA.ZHS16GBK;
export LANG=en_US

EOF


###创建软件安装目录:
mkdir -p /u01/app/11.2.0/grid
chown -R grid:oinstall /u01
mkdir -p /u01/app/oracle
chown -R oracle:oinstall /u01/app/oracle


###检查节点之间是否一致性:
./runcluvfy.sh stage -pre crsinst -n rac1,rac2 -fixup -verbose



### IP SAN硬盘侦测:
iscsiadm -m discovery -t sendtargets -p ip:port

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

相关内容

热门资讯

时隔九年再度来京,特朗普有何诉... ◆5月12日,特朗普登上“空军一号”前对着镜头挥手告别。(图源:美联社)文/何平编辑/漆菲5月13日...
硬科技管控,中美关系的新压舱石 特朗普此次访华,英伟达CEO黄仁勋随行的消息提振美股市场,凸显芯片与人工智能已成为中美关系的核心议题...
报告:今年一季度AI原生APP... 中国青年网北京5月12日电(记者 高蕾)近日,第三方智能数据服务商QuestMobile发布了《中国...
七大新品发布!国轩高科第15届... 央广网合肥5月13日消息(记者徐鹏)5月16日至17日,电池龙头企业国轩高科将在合肥举办第15届全球...
百度伐谋2.0发布,李彦宏:能... 5月13日举办的Create2026百度AI开发者大会开幕式上,自我演化决策智能体百度伐谋升级至2....
泰顶级豪门曝性侵丑闻!哥哥侵犯... 泰国最有影响力的巨头之一Singha集团(胜狮集团),这两天爆出性侵丑闻。集团第四代成员,环保活动家...
什么信号?多地要求干部带头缴纳... 多地要求干部带头缴纳物业费。最近一段时间,物业费成了社会关注的焦点。原因竟然是多地密集出台文件,号召...
“这不是威胁而是绝佳机遇”,默... 【文/观察者网 张菁娟】“当下挑战之所以如此巨大,是因为我们长期以来为自己制造了太多问题,而这些问题...
老杜盟友半路杀出,“闪电夺权”... 最近两天,马尼拉的政治温度直接爆表。5月11日上午,菲律宾众议院以255票赞成、26票反对、9票弃权...
“六张网”项目密集启动 进一步... 新华社北京5月13日电 题:“六张网”项目密集启动 进一步释放内需潜力经济参考报记者汪子旭近期,一批...