[Oracle] centos7安装rac报错ohasd failed to start


本文总阅读量

1、具体报错信息

安装完成grid之后,在执行/u01/app/11.2.0.4/grid/root.sh命令时报以下错误:

1
2
ohasd failed to start
Failed to start the Clusterware. Last 20 lines of the alert log follow

2、单独在linux 7中为ohasd设置一个服务。

1、创建服务ohas.service的服务文件并赋予权限

1
2
touch /usr/lib/systemd/system/ohas.service
chmod 777 /usr/lib/systemd/system/ohas.service

2、往ohas.service服务文件添加启动ohasd的相关信息
vi /usr/lib/systemd/system/ohas.service

1
2
3
4
5
6
7
8
9
10
[Unit]
Description=Oracle High Availability Services
After=syslog.target

[Service]
ExecStart=/etc/init.d/init.ohasd run >/dev/null 2>&1 Type=simple
Restart=always

[Install]
WantedBy=multi-user.target

3、重新加载守护进程

1
systemctl daemon-reload

设置守护进程自动启动

1
systemctl enable ohas.service

手工启动ohas服务

1
systemctl start ohas.service

4、重新运行root.sh脚本

1
sh root.sh

5:查看ohas服务状态

1
systemctl status ohas.service
目录
  1. 1. 1、具体报错信息
  2. 2. 2、单独在linux 7中为ohasd设置一个服务。

Proudly powered by Hexo and Theme by Lap
本站访客数人次
© 2020 zeven0707's blog