红联Linux门户
Linux帮助

RHRL7.0安装RAC11.2.0.4----ohasd服务无法启动

发布时间:2016-09-09 10:45:06来源:linux网站作者:丹心明月
RHRL7.0安装RAC11.2.0.4时,安装GI,执行root.sh的时候,会报错无法启动服务,这个时候需要特殊配置:
#touch /usr/lib/systemd/system/ohas.service  
chmod 777 /usr/lib/systemd/system/ohas.service  
[root@rac1 init.d]# cat /usr/lib/systemd/system/ohas.service  
[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  
 
这个服务,还需要在操作系统层面开启自动呢启动。我就在节点2没有启用自动启动,在操作系统重启之后集群件就起不来了,看ohasd.log的时候,是报错起不来ohasd服务的。
 
设置自动启动:
systemctl enable ohas.service
 
本文永久更新地址:http://www.linuxdiyf.com/linux/24012.html