How to change private interface in 10g cluster

如果要修改Private Interface的实际IP地址,必须要在操作系统级别修改,比如通过ifconfig命令以及修改/etc/hosts文件等,而为了避免发生node evictions,需要保证CRS stack down。在修改完IP地址以后,再重新让CRS stack up,才可以使用oifcfg命令修改保存在OCR中的信息。 在10gR2以前起停CRS Stack使用init.crs。 #init.crs stop #init.crs start 在10gR2以后可以使用crsctl命令。 #crsctl stop crs #crsctl start crs 1. 检查当前的网络资源配置 % $ORA_CRS_HOME/bin/oifcfg getif 2. 删除原先的Private Interface设置 % $ORA_CRS_HOME/bin/oifcfg…

Continue ReadingHow to change private interface in 10g cluster

How to resolve ORA-01034 when RAC failover

今天在客户处测试Oracle 9.2.0.8 on HP-UX IA64的RAC Failover功能,遇到ORA-01034错误。 表现为: 当关闭RAC环境的某一个实例之后(无论是shutdown abort还是shutdown immediate),再用远程客户端通过tns连接RAC Service都会间歇性报ORA-01034错误。 $ sqlplus system/oracle@prod SQL*Plus: Release 9.2.0.8.0 - Production on Tue Nov 17 20:52:09 2009 Copyright (c) 1982, 2002, Oracle…

Continue ReadingHow to resolve ORA-01034 when RAC failover

How to identify the cluster name

在为RAC环境配置database control的时候,会被问及cluster name,当然我们知道默认安装的Oracle Cluster Name就是crs,但是如何确认到底CRS的名字是什么呢? [oracle@dbserver1 oracle10g]$ emca -config dbcontrol db -cluster -EM_NODE dbserver1 -EM_SID_LIST intertol2,intertol3,intertol4 STARTED EMCA at Jul 27, 2009 4:20:25 PM EM Configuration Assistant, Version 10.2.0.1.0 Production…

Continue ReadingHow to identify the cluster name