oracle11grac启动crs,Oracle11gRAC停机之后启动rac时报CRS-0184:Cannotcommunicatewit

本文主要是介绍oracle11grac启动crs,Oracle11gRAC停机之后启动rac时报CRS-0184:Cannotcommunicatewit,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

5268f80b9b1e01f982625ef6fac83ca1.png

Oracle 11g RAC 停机之后启动rac 时报 CRS-0184: Cannot communicate with the CRS daemon.

# ./crs_stat -t

CRS-0184: Cannot communicate with the CRS daemon.

检查日志

# pwd

/u01/app/11.2.0/grid/log/expquery01/crsd

# tail -200 crsd.log | more

....

2013-10-03 05:35:48.659: [ CRSD][1] ENV Logging level for Module: UiServer 0

2013-10-03 05:35:48.659: [ CRSMAIN][1] Checking the OCR device

2013-10-03 05:35:48.660: [ CRSMAIN][1] Sync-up with OCR

2013-10-03 05:35:48.660: [ CRSMAIN][1] Connecting to the CSS Daemon

2013-10-03 05:35:48.660: [ CRSMAIN][1] Getting local node number

2013-10-03 05:35:48.660: [ CRSMAIN][3] Policy Engine is not initialized yet!

2013-10-03 05:35:48.661: [ CRSMAIN][1] Initializing OCR

[ CLWAL][1]clsw_Initialize: OLR initlevel [70000]

2013-10-03 05:35:49.134: [ OCRASM][1]proprasmo: Error in open/create file in dg [DATA]

[ OCRASM][1]SLOS : SLOS: cat=8, opn=kgfoOpen01, dep=15056, loc=kgfokge

2013-10-03 05:35:49.134: [ OCRASM][1]ASM Error Stack :

2013-10-03 05:35:49.221: [ OCRASM][1]proprasmo: kgfoCheckMount returned [6]

2013-10-03 05:35:49.221: [ OCRASM][1]proprasmo: The ASM disk group DATA is not found or not mounted

2013-10-03 05:35:49.222: [ OCRRAW][1]proprioo: Failed to open [+DATA]. Returned proprasmo() with [26]. Marking location as UNAVAILABLE.

2013-10-03 05:35:49.222: [ OCRRAW][1]proprioo: No OCR/OLR devices are usable

2013-10-03 05:35:49.222: [ OCRASM][1]proprasmcl: asmhandle is NULL

2013-10-03 05:35:49.223: [ GIPC][1] gipcCheckInitialization: possible incompatible non-threaded init from [prom.c : 690], original from [clsss.c : 5326]

2013-10-03 05:35:49.226: [ default][1]clsvactversion:4: Retrieving Active Version from local storage.

2013-10-03 05:35:49.228: [ CSSCLNT][1]clssgsgrppubdata: group (ocr_expquer-cluster) not found

2013-10-03 05:35:49.228: [ OCRRAW][1]proprio_repairconf: Failed to retrieve the group public data. CSS ret code [20]

2013-10-03 05:35:49.251: [ OCRRAW][1]proprioo: Failed to auto repair the OCR configuration.

2013-10-03 05:35:49.251: [ OCRRAW][1]proprinit: Could not open raw device

2013-10-03 05:35:49.251: [ OCRASM][1]proprasmcl: asmhandle is NULL

2013-10-03 05:35:49.253: [ OCRAPI][1]a_init:16!: Backend init unsuccessful : [26]

2013-10-03 05:35:49.254: [ CRSOCR][1] OCR context init failure. Error: PROC-26: Error while accessing the physical storage

2013-10-03 05:35:49.254: [ CRSMAIN][1] Created alert : (:CRSD00111:) : Could not init OCR, error: PROC-26: Error while accessing the physical storage

2013-10-03 05:35:49.254: [ CRSD][1][PANIC] CRSD exiting: Could not init OCR, code: 26

2013-10-03 05:35:49.254: [ CRSD][1] Done.

问题判断:可能是停机之后服务器比存储先起来,导致crs启动的时候未找到存储。

尝试解决方案: 重启服务器

结果: reboot 每个节点之后,crs正常启动,然后成功开启每个实例。

推荐阅读:

使用RMAN的Duplicate功能创建物理DataGuard

Oracle基础教程之通过RMAN复制数据库

RMAN备份策略制定参考内容

RMAN备份学习笔记

Oracle数据库备份加密 RMAN加密

通过RMAN备份duplicate创建DataGuard

logo.gif

1428d0e076c3959ab11d28a39bc84fab.png

5268f80b9b1e01f982625ef6fac83ca1.png

本条技术文章来源于互联网,如果无意侵犯您的权益请点击此处反馈版权投诉

本文系统来源:php中文网

这篇关于oracle11grac启动crs,Oracle11gRAC停机之后启动rac时报CRS-0184:Cannotcommunicatewit的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/355332

相关文章

SpringBoot启动报错的11个高频问题排查与解决终极指南

《SpringBoot启动报错的11个高频问题排查与解决终极指南》这篇文章主要为大家详细介绍了SpringBoot启动报错的11个高频问题的排查与解决,文中的示例代码讲解详细,感兴趣的小伙伴可以了解一... 目录1. 依赖冲突:NoSuchMethodError 的终极解法2. Bean注入失败:No qu

一文带你了解SpringBoot中启动参数的各种用法

《一文带你了解SpringBoot中启动参数的各种用法》在使用SpringBoot开发应用时,我们通常需要根据不同的环境或特定需求调整启动参数,那么,SpringBoot提供了哪些方式来配置这些启动参... 目录一、启动参数的常见传递方式二、通过命令行参数传递启动参数三、使用 application.pro

SpringBoot项目启动报错"找不到或无法加载主类"的解决方法

《SpringBoot项目启动报错找不到或无法加载主类的解决方法》在使用IntelliJIDEA开发基于SpringBoot框架的Java程序时,可能会出现找不到或无法加载主类com.example.... 目录一、问题描述二、排查过程三、解决方案一、问题描述在使用 IntelliJ IDEA 开发基于

SpringBoot项目启动错误:找不到或无法加载主类的几种解决方法

《SpringBoot项目启动错误:找不到或无法加载主类的几种解决方法》本文主要介绍了SpringBoot项目启动错误:找不到或无法加载主类的几种解决方法,具有一定的参考价值,感兴趣的可以了解一下... 目录方法1:更改IDE配置方法2:在Eclipse中清理项目方法3:使用Maven命令行在开发Sprin

Nginx启动失败:端口80被占用问题的解决方案

《Nginx启动失败:端口80被占用问题的解决方案》在Linux服务器上部署Nginx时,可能会遇到Nginx启动失败的情况,尤其是错误提示bind()to0.0.0.0:80failed,这种问题通... 目录引言问题描述问题分析解决方案1. 检查占用端口 80 的进程使用 netstat 命令使用 ss

Android里面的Service种类以及启动方式

《Android里面的Service种类以及启动方式》Android中的Service分为前台服务和后台服务,前台服务需要亮身份牌并显示通知,后台服务则有启动方式选择,包括startService和b... 目录一句话总结:一、Service 的两种类型:1. 前台服务(必须亮身份牌)2. 后台服务(偷偷干

Windows设置nginx启动端口的方法

《Windows设置nginx启动端口的方法》在服务器配置与开发过程中,nginx作为一款高效的HTTP和反向代理服务器,被广泛应用,而在Windows系统中,合理设置nginx的启动端口,是确保其正... 目录一、为什么要设置 nginx 启动端口二、设置步骤三、常见问题及解决一、为什么要设置 nginx

springboot启动流程过程

《springboot启动流程过程》SpringBoot简化了Spring框架的使用,通过创建`SpringApplication`对象,判断应用类型并设置初始化器和监听器,在`run`方法中,读取配... 目录springboot启动流程springboot程序启动入口1.创建SpringApplicat

树莓派启动python的实现方法

《树莓派启动python的实现方法》本文主要介绍了树莓派启动python的实现方法,文中通过图文介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧... 目录一、RASPBerry系统设置二、使用sandroidsh连接上开发板Raspberry Pi三、运

解决Spring运行时报错:Consider defining a bean of type ‘xxx.xxx.xxx.Xxx‘ in your configuration

《解决Spring运行时报错:Considerdefiningabeanoftype‘xxx.xxx.xxx.Xxx‘inyourconfiguration》该文章主要讲述了在使用S... 目录问题分析解决方案总结问题Description:Parameter 0 of constructor in x