root.sh Fails on the First Node for 11gR2 Grid Infrastructure Installation
admin
2023-05-09 13:22:07
0

在第二节点执行脚本报如下错误,根据官方提示进行修复仍无济于事。由于测试环境使用虚拟机搭建共享磁盘,最终发现导致如下报错原因为共享磁盘问题,更换共享磁盘后问题解决。

node2:/u01/app/11.2.0/grid # ./root.sh 

Performing root user operation for Oracle 11g 


The following environment variables are set as:

    ORACLE_OWNER= grid

    ORACLE_HOME=  /u01/app/11.2.0/grid


Enter the full pathname of the local bin directory: [/usr/local/bin]: 

   Copying dbhome to /usr/local/bin ...

   Copying oraenv to /usr/local/bin ...

   Copying coraenv to /usr/local/bin ...


Creating /etc/oratab file...

Entries will be added to the /etc/oratab file as needed by

Database Configuration Assistant when a database is created

Finished running generic part of root script.

Now product-specific root actions will be performed.

Using configuration parameter file: /u01/app/11.2.0/grid/crs/install/crsconfig_params

Creating trace directory

User ignored Prerequisites during installation

Installing Trace File Analyzer

OLR initialization - successful

Adding Clusterware entries to inittab

CRS-2672: Attempting to start 'ora.mdnsd' on 'node2'

CRS-2676: Start of 'ora.mdnsd' on 'node2' succeeded

CRS-2672: Attempting to start 'ora.gpnpd' on 'node2'

CRS-2676: Start of 'ora.gpnpd' on 'node2' succeeded

CRS-2672: Attempting to start 'ora.cssdmonitor' on 'node2'

CRS-2672: Attempting to start 'ora.gipcd' on 'node2'

CRS-2676: Start of 'ora.cssdmonitor' on 'node2' succeeded

CRS-2676: Start of 'ora.gipcd' on 'node2' succeeded

CRS-2672: Attempting to start 'ora.cssd' on 'node2'

CRS-2672: Attempting to start 'ora.diskmon' on 'node2'

CRS-2676: Start of 'ora.diskmon' on 'node2' succeeded

CRS-2676: Start of 'ora.cssd' on 'node2' succeeded


Disk Group OCR_VOTE creation failed with the following message:

ORA-15018: diskgroup cannot be created

ORA-15017: diskgroup "OCR_VOTE" cannot be mounted

ORA-15003: diskgroup "OCR_VOTE" already mounted in another lock name space


Configuration of ASM ... failed

see asmca logs at /u01/app/grid/cfgtoollogs/asmca for details

Did not succssfully configure and start ASM at /u01/app/11.2.0/grid/crs/install/crsconfig_lib.pm line 6912.

/u01/app/11.2.0/grid/perl/bin/perl -I/u01/app/11.2.0/grid/perl/lib -I/u01/app/11.2.0/grid/crs/install /u01/app/11.2.0/grid/crs/install/rootcrs.pl execution failed


以下信息为官方给予的解决方法:
 root.sh Fails on the First Node for 11gR2 Grid Infrastructure Installation (文档 ID 1191783.1)

  

APPLIES TO:

Oracle Database - Enterprise Edition -  Version 11.2.0.1 and later
 Information in this document applies to any platform.

SYMPTOMS

Multiple nodes cluster, installing 11gR2  Grid Infrastructure for the first time, root.sh fails on the first node.
 
 /cfgtoollogs/crsconfig/rootcrs_.log shows:

2010-07-24 23:29:36: Configuring ASM via  ASMCA
 2010-07-24 23:29:36: Executing as oracle: /opt/grid/bin/asmca -silent  -diskGroupName OCR -diskList  ORCL:VOTING_DISK1,ORCL:VOTING_DISK2,ORCL:VOTING_DISK3 -redundancy NORMAL  -configureLocalASM
 2010-07-24 23:29:36: Running as user oracle: /opt/grid/bin/asmca -silent  -diskGroupName OCR -diskList  ORCL:VOTING_DISK1,ORCL:VOTING_DISK2,ORCL:VOTING_DISK3 -redundancy NORMAL  -configureLocalASM
 2010-07-24 23:29:36: Invoking "/opt/grid/bin/asmca -silent  -diskGroupName OCR -diskList  ORCL:VOTING_DISK1,ORCL:VOTE_DISK2,ORCL:VOTE_DISK3 -redundancy NORMAL  -configureLocalASM" as user "oracle"
 2010-07-24 23:29:53:Configuration failed, see logfile for details


 $ORACLE_BASE/cfgtoollogs/asmca/asmca-.log shows error:

ORA-15018 diskgroup cannot be created
 ORA-15017 diskgroup OCR_VOTING_DG cannot be mounted
 ORA-15003 diskgroup OCR_VOTING_DG already mounted in another lock name space


 This is a new installation, the disks used by ASM are not shared on any other  cluster system.

CHANGES

New installation.

CAUSE

The problem is caused by runing root.sh  simultaneously on the first node and the remaining node(s) rather than  completing root.sh on the first node before running it on the remaining  node(s).
 
 On node 2, /cfgtoollogs/crsconfig/rootcrs_.log  has approximate same time stamp:

2010-07-24 23:29:39: Configuring ASM via  ASMCA
 2010-07-24 23:29:39: Executing as oracle: /opt/grid/bin/asmca -silent  -diskGroupName OCR -diskList  ORCL:VOTING_DISK1,ORCL:VOTING_DISK2,ORCL:VOTING_DISK3 -redundancy NORMAL  -configureLocalASM
 2010-07-24 23:29:39: Running as user oracle: /opt/grid/bin/asmca -silent  -diskGroupName OCR -diskList  ORCL:VOTING_DISK1,ORCL:VOTING_DISK2,ORCL:VOTING_DISK3 -redundancy NORMAL  -configureLocalASM
 2010-07-24 23:29:39: Invoking "/opt/grid/bin/asmca -silent  -diskGroupName OCR -diskList  ORCL:VOTING_DISK1,ORCL:VOTE_DISK2,ORCL:VOTE_DISK3 -redundancy NORMAL  -configureLocalASM" as user "oracle"
 2010-07-24 23:29:55:Configuration failed, see logfile for details


 It has similar content, the only difference is its time started 3 seconds  later than the first node. This indicates root.sh was running simultaneously  on both nodes.
 
 The root.sh on the 2nd node also created +ASM1 instance ( as it also appears  as it is the first node to run root.sh), it mounted the same diskgroup, led  to the +ASM1 on node 1 reporting:
 ORA-15003 diskgroup OCR_VOTING_DG already mounted in another lock name space

SOLUTION

1. Deconfig the Grid Infrastructure  without removing binaries, refer to Document  942166.1 How to Proceed from Failed 11gR2 Grid Infrastructure (CRS)  Installation. For two nodes case:
 
 As root, run "$GRID_HOME/crs/install/rootcrs.pl -deconfig -force  -verbose" on node 1,
 As root, run "$GRID_HOME/crs/install/rootcrs.pl -verbose -deconfig  -force -lastnode" on node 2.


 2. Rerun root.sh on the first node first, only proceed with the remaining  node(s) after root.sh completes on the first node.

REFERENCES

NOTE:1050908.1 -  Troubleshoot Grid Infrastructure Startup Issues

NOTE:942166.1 -  How to Proceed from Failed 11gR2 Grid Infrastructure (CRS) Installation

   

 


相关内容

热门资讯

参加完中美会谈,马斯克、黄仁勋... 5月14日,在参加完中美元首会谈后,特斯拉首席执行官马斯克、苹果首席执行官库克、英伟达首席执行官黄仁...
河南防汛新观察 5月12日,抢险人员在白龟山水库大坝上巡堤查险。 王毛生 摄5月10日,2026年度防汛抢险联合演练...
胡锡进:武大做出了彻底开放的示... 武汉大学宣布正式取消社会公众进校预约制度,校外人员只需凭本人身份证即可进入校园。这是很有意义的一件事...
全国医保基金飞行检查正式启动,... 【大河财立方消息】5月14日,国家医保基金飞行检查湖南现场启动会暨警示教育会在长沙召开,标志着202...
坚定不移沿着习近平总书记指引的... 在中航光电的展馆里,一辆新能源汽车的剖面模型格外醒目。 河南日报全媒体记者 冉衡 摄【编者按】202...
河南一地入选!国家级试点城市名... 【大河财立方消息】5月14日消息,工业和信息化部、财政部公示第三批制造业新型技术改造城市试点拟入选名...
周日有大到暴雨!郑州将有连续性... 受切变线和低空急流共同影响,16日至18日我市将有一次明显降水过程。15日夜里有阵雨,16日下午到夜...
降的是费率 增的是底气 河南失... 中国铁路郑州局集团有限公司开展业务技能实操训练。受访者供图一笔失业保险稳岗返还资金,到了企业手里,可...
宇树科技发布全球首款载人变形机... 宇树科技CEO王兴兴与载人变形机甲GD01击拳。宇树科技供图5月12日,宇树科技发布全球首款量产版载...
洗衣机地漏盖不闭合怎么修 如果您发现您的洗衣机地漏盖不闭合,这可能是由于以下原因之一: 1. 漏水管生锈或破裂:这可能是漏水...