Oracle 11g RAC 添加节点错误--数据库软件添加新节点故障

简介:

错误案例:

Oracle 11g RAC 添加新节点时,在数据库软件添加新节点时出现以下错误:

$ $DB_HOME/oui/bin/addNode.sh -silent "CLUSTER_NEW_NODES={new_nodename}" 
SEVERE:Number of new nodes being added are not equal to number of new virtual nodes. Silent install cannot continue.

Applies to:

Oracle Server - Enterprise Edition - Version: 11.2.0.1 and later   [Release: 11.2 and later ]
Information in this document applies to any platform.

Symptoms


Adding one or more nodes to 11gR2 GI cluster, successfully extended GI home to the new nodes with addNode.sh from $GRID_HOME/oui/bin, however, while extending RAC database home to the new node(s) with addNode.sh from $DB_HOME/oui/bin, the following error is reported:

  • Screen output

$ $DB_HOME/oui/bin/addNode.sh -silent "CLUSTER_NEW_NODES={new_nodename}" 

SEVERE:Number of new nodes being added are not equal to number of new virtual nodes. Silent install cannot continue.


  • installActions<timestamp>.log

INFO: /oracle/11.2/db/oui/bin/../bin/lsnodes: error while loading shared libraries: libskgxn2.so: cannot open shared obje
ct file: No such file or directory
INFO: Vendor clusterware is not detected.
INFO: Error ocurred while retrieving node numbers of the existing nodes. Please check if clusterware home is properly config
ured.
SEVERE: Error ocurred while retrieving node numbers of the existing nodes. Please check if clusterware home is properly configured.



Cause

Wrong lsnodes in $DB_HOME

Solution

In this example:

GRID_HOME=/ocw/grid
DB_HOME=/oracle/11.2/db


The solution is to create the following symbolic link:

$ export GRID_HOME=/ocw/grid
$ export DB_HOME=oracle/11.2/db

$ cd $DB_HOME/bin
$ mv lsnodes lsnodes.old
$ ln -s $GRID_HOME/bin/olsnodes $DB_HOME/bin/lsnodes
$ ln -s $GRID_HOME/bin/olsnodes.bin $DB_HOME/bin/lsnodes.bin

$ cd $DB_HOME/oui/bin
$ mv lsnodes lsnodes.old
$ ln -s $GRID_HOME/bin/olsnodes $DB_HOME/oui/bin/lsnodes
$ ln -s $GRID_HOME/bin/olsnodes.bin $DB_HOME/oui/bin/lsnodes.bin

References

BUG:5521132 - ISPRE10I.JAVA: RETURNING TRUE CAUSE THE CAN NOT RUN ADDNODE.SH










本文转自 客居天涯 51CTO博客,原文链接:http://blog.51cto.com/tiany/1410464,如需转载请自行联系原作者
目录
相关文章
|
3月前
|
存储 Oracle 关系型数据库
数据库数据恢复—ORACLE常见故障的数据恢复方案
Oracle数据库常见故障表现: 1、ORACLE数据库无法启动或无法正常工作。 2、ORACLE ASM存储破坏。 3、ORACLE数据文件丢失。 4、ORACLE数据文件部分损坏。 5、ORACLE DUMP文件损坏。
187 11
|
5月前
|
存储 Oracle 关系型数据库
数据库数据恢复—Oracle ASM磁盘组故障数据恢复案例
Oracle数据库数据恢复环境&故障: Oracle ASM磁盘组由4块磁盘组成。Oracle ASM磁盘组掉线 ,ASM实例不能mount。 Oracle数据库故障分析&恢复方案: 数据库数据恢复工程师对组成ASM磁盘组的磁盘进行分析。对ASM元数据进行分析发现ASM存储元数据损坏,导致磁盘组无法挂载。
|
7月前
|
运维 Oracle 前端开发
Oracle 11g RAC集群日常运维命令总结
Oracle 11g RAC集群日常运维命令总结
159 2
|
8月前
|
存储 负载均衡 Oracle
|
7月前
|
Oracle 关系型数据库
分布式锁设计问题之Oracle RAC保证多个节点写入内存Page的一致性如何解决
分布式锁设计问题之Oracle RAC保证多个节点写入内存Page的一致性如何解决
100 0
|
8月前
|
Oracle 关系型数据库 数据库
关系型数据库Oracle 故障转移能力
【7月更文挑战第10天】
90 2
|
8月前
|
存储 Oracle 关系型数据库
|
10月前
|
存储 Oracle 关系型数据库
Oracle RAC:数据库集群的舞动乐章
【4月更文挑战第19天】Oracle RAC是Oracle提供的高可用性数据库解决方案,允许多个实例共享同一数据库,确保业务连续性和数据完整性。通过集群件和全局缓存服务实现服务器间的协调和通信。RAC提供高可用性,通过故障转移应对故障,同时提升性能,多个实例并行处理请求。作为数据管理员,理解RAC的架构和管理至关重要,以发挥其在数据管理中的最大价值。
|
10月前
|
存储 运维 Oracle
Oracle系列十八:Oracle RAC
Oracle系列十八:Oracle RAC
1116 0

推荐镜像

更多