crs启动报错CRS-4124 CRS-4000

广大1年前技术文章1383

现象:

crs启动报错CRS-4124 CRS-4000 CRS-0715

# crsctl start crs

CRS-4124: Oracle High Availability Services startup failed.

CRS-4000: Command Start failed, or completed with errors.


在gi的alert日志中报错如下:

<GRID_HOME>/log/<node>/alert<node>.log

[ohasd(<pid>)] CRS-0715:Oracle High Availability Service has timed out waiting for init.ohasd to be started.


init.ohasd进程在linux中是在/etc/inittab文件中配置启动的,可以看到init.ohasd绝对路径

# grep ohasd /etc/inittab

h1:35:respawn:/etc/init.d/init.ohasd run >/dev/null 2>&1 </dev/null

但是查看进程发现并没有启动init.ohasd进程

# ps -ef| grep init.ohasd | grep -v grep

>> no output

原因:

这个可能的原因是脚本运行卡住了导致

解决方案:

通过root权限手工运行init.ohasd脚本启动进程,命令如下:

cd <location-of-init.ohasd>

nohup ./init.ohasd run & 


相关文章

PG的pg_stat_statements插件

pg_stat_statements可追踪一个服务器所执行的所有 SQL 语句的执行统计信息,可以用于统计数据库的资源开销,分析TOP SQL。一、插件安装1、编译安装进入postgresql源码目录...

Elasticsearch8.5及Kibana8.5安装部署

Elasticsearch8.5及Kibana8.5安装部署

一、环境准备1、Centos7系统2、切换英文系统[root@master02 ~]# tail -n2 /etc/profile export LANG="en_US.UTF-8"3、下载、安...

Linux Firewall规则配置

Linux Firewall规则配置

1、Firewalld是否启动成功systemctl start firewalld && systemctl enable firewalld2、开启规则需求:客户由于网络审查问题。...

MySQL 小版本升级

MySQL 小版本升级

MySQL 版本一般不需要经常升级,如果需要使用某个新特性或者修改 BUG 就不得不升级小版本。1. 环境调研1. 当前数据库版本和需要升级到某个版本,如果升级需求 5.6.22+ 那么我们直接下载...

热点现象(数据倾斜)怎么产生的,以及解决方法有哪些

热点现象:某个小的时段内,对HBase 的读写请求集中到极少数的Region 上,导致这些region所在的RegionServer 处理请求量骤增,负载量明显偏大,而其他的RgionServer明显...

PG的多版本并发控制(三)

三、多版本并发控制3.1 常见多版本并发的实现方式第一种方式是,数据库仅保存最新版本数据,将发生变更的旧行版本数据写到其他地方如undo,当需要读取旧版本数据时,通过undo重构。oracle和MyS...

发表评论    

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。