RAC出现CRS-4535: Cannot communicate with Cluster Ready Services 时排查问题步骤

crsctl check crs

发现第二行报错:

CRS-4638: Oracle High Availability Services is online
CRS-4535: Cannot communicate with Cluster Ready Services 
CRS-4529: Cluster Synchronization Services is online
CRS-4533: Event Manager is online

check crs的时候只出现crs-4535的错误,解决步骤:

这个问题一般是由crsd进程死掉或者ocr磁盘组状态不对引起的。

1.查看磁盘组所属组(chown)和权限(chmod)是否正确

2.查看crsd的进程是否存在或者正确

ps -ef | grep crsd.bin

crsctl stat res -t -init  查看ora.crsd的状态是否为online

3.一般到这一步其实ora.crsd的状态是offline的,所以需要去检查一下grid 下的$ORACLE_HOME/log/hostname/crsd/crsd.log日志的输出,看是否存在异常

4.检查asm磁盘组的状态

select name,state from v$asm_diskgroup;想对应的ocr磁盘组的状态

5.在所有都检查完毕后没有问题,就启动crsd进程

crsctl start res ora.crsd -init

时间: 2024-09-07 00:40:28

RAC出现CRS-4535: Cannot communicate with Cluster Ready Services 时排查问题步骤的相关文章

RedHat EL5 安装Oracle 10g RAC之--CRS 安装

RedHat EL5 安装Oracle 10g RAC之--CRS 安装 系统环境: 操作系统:RedHat EL5 Cluster: Oracle CRS 10.2.0.1.0 Oracle:  Oracle 10.2.0.1.0 如图所示:RAC 系统架构 二.CRS 安装   Cluster Ready Service是Oracle 构建RAC,负责集群资源管理的软件,在搭建RAC中必须首先安装. 安装需采用图形化方式,以Oracle用户的身份安装(在node1上): 注意:修改安装配置文

oracle 10g rac重建crs

1.crs文件已经损坏,删除crs信息 rac10g1节点: [[email protected] install]# ./rootdelete.sh Shutting down Oracle Cluster Ready Services (CRS): Stopping resources. Error while stopping resources. Possible cause: CRSD is down. Stopping CSSD. Shutting down CSS daemon.

Oracle 11g RAC 卸载CRS步骤

Oracle 11g之后提供了卸载grid和database的脚本,可以卸载的比较干净,不需要手动删除crs ############ ORACLE DEINSTALL & DECONFIG TOOL START ############ 1.root用户进入到grid的ORACLE_HOME(只在一个节点上执行即可) 说明:(如果没有从官网上下载) 1.从oracle官方网站上下载的deinstall工具 11GR2有7个下载包,deinstall放在第7个下载包,如11.2.0.2的下载包为

rac中 crsctl start/stop crs and crsctl start/stop cluster 区别

官网解释: crsctl start/stop crs - Manage start/stop the entire Oracle Clusterware stack on a node, including the OHASD process, this command is to be used only on the local node.. crsctl start/stop cluster - Manage start/stop the Oracle Clusterware stack

oralce11g RAC 启动后 CRS-0184: Cannot communicate with the CRS daemon.

很奇怪的一个问题! ORACLE数据库服务器,系统启动之后,查看集群状态,发现CRS实例不可用,然后网上查找资料: 隔了几分钟之后,再次查询相关集群服务状态,发现正常了!!! 暂时得出的结论:操作系统启动之后,默认相关集群服务是自动启动的,但是,开机后,需要加载或者集群服务启动需要一段时间,等几分钟之后,集群服务才能准备 就绪!!! 文末,有一篇其他情况的解决方式. [[email protected] ~]# /u01/app/11.2.0.4/grid/bin/crsctl start cr

tomcat cluster session同步时保存数据的问题

Tomcat Cluster官网:https://tomcat.apache.org/tomcat-7.0-doc/cluster-howto.html(tomcat7.0) 场景: tomcat1 tomcat2    |            |--------|---------      nginx tomcat版本:7.0.59 1.后端应用为2台tomcat容器,并且配置了Tomcat Cluster:2.nginx为前端web服务器,负责反向代理和负载均衡(简单轮训),配置如下:

ceph 集群报 mds cluster is degraded 故障排查

ceph 集群版本: ceph -vceph version 10.2.7 (50e863e0f4bc8f4b9e31156de690d765af245185) ceph -w 查看服务状态: mds cluster is degraded      monmap e1: 3 mons at {ceph-6-11=172.16.6.11:6789/0,ceph-6-12=172.16.6.12:6789/0,ceph-6-13=172.16.6.13:6789/0}             el

mysql cluster 集群时插入大量数据出现 table is full的解决方法

一.循环插入数据时出现  table is full 二.在mgm>all report memoryusage 查看 Node 2: Data usage is 22%(2305 32K pages of total 10240) 使用率到最后98%以上这时出现啦table is full 基于以上两种情况,其实是一种情况的我的解决方法是: 根据硬件配置必须根据硬件配置修改my.cnf文件和config.ini文件 1.config.ini[ndbd default]NoOfReplicas=

左右RAC CRS 自己主动启动

左右CRS自己主动重新启动实验 一.检验ASM [[email protected] ~]# /etc/init.d/oracleasm status Checking if ASM is loaded: yes Checking if /dev/oracleasm is mounted: yes [[email protected] ~]# /etc/init.d/oracleasm listdisks ASM01 ASM02 ASM03 二.RAC自己主动启动的时候后台CRS进程 [[ema