|
原因找到了: In RHEL 6 inittab is no longer supported, it uses upstart insted
Workaround:如下:
To solve the issue do the following:
Create the file:/etc/init/init-oracle.conf
#start oracle
start on runlevel [0123456]
stop on runlevel [016]
respawn
exec /etc/init.d/init.ohasd run >/dev/null 2>&1 </dev/null
在运行root.sh失败后手功运行:
initctl start init-oracle
日起显示:
2011-10-25 05:57:49.900
[ohasd(7747)]CRS-2112:The OLR service started on node mydb1.
2011-10-25 05:57:49.955
[ohasd(7747)]CRS-1301:Oracle High Availability Service started on node mydb1.
2011-10-25 05:57:49.900
但root.sh失败无法注册ora.cssd, ora.asm资源,此问题现在仍然无解。
[grid@mydb1 bin]$ crs_stat -t
Name Type Target State Host
------------------------------------------------------------
ora....ER.lsnr ora....er.type ONLINE ONLINE mydb1
所以要安装11.2.0.3 |
|