数据库启动报:ORA-29702: error occurred in Cluster Group Service op
更新时间: 2022-07-20 08:19
有一个ORACLE 11G RAC集群,由于各种原因,不用集群了,使用单机,删除GI 部分,包含GRID用户,然后,启动数据库,报以下错误:
$ sqlplus /nolog
SQL*Plus: Release 11.2.0.4.0 Production on Mon Jun 13 20:18:20 2022
Copyright (c) 1982, 2013, Oracle. All rights reserved.
SQL> conn / as sysdba
Connected to an idle instance.
SQL> startup nomount pfile='/home/oracle/initxxdb.ora';
ORA-29702: error occurred in Cluster Group Service operation
对于这个错误,可以选择关闭并行即可。
具体解决办法如下:
1. 关闭并行
$ cd $ORACLE_HOME/rdbms/lib
$ make -f ins_rdbms.mk no_parropt
2.重新编译
$ make -f ins_rdbms.mk install
3.打开数据库即可
SQL> startup nomount;
ORACLE instance started.