报错现象:
[oracle@db2 ~]$ sqlplus / as sysdba
SQL*Plus: Release 11.2.0.4.0 Production on Fri Dec 7 16:27:50 2018
Copyright (c) 1982, 2013, Oracle. All rights reserved.
Connected to an idle instance.
SQL> startup;
ORA-29702: error occurred in Cluster Group Service operation
SQL>
解决办法:
the basic reason for this error could be two situations. 1) when cluster services are not running and tried to start the DB. 2) if we used RAC oracle_home for cloning NON-RAC oracle_home. we will get the above error. solution for point 1) check if cluster services are up and running, if not please start the cluster services. solution for point 2) If we are getting the above error after cloning ORACLE_HOME from RAC Oracle_home, then follow the below action plan. cd $ORACLE_HOME/rdbms/lib
make -f ins_rdbms.mk rac_off
make -f ins_rdbms.mk ioracle with above action plan problem will be resolved.
|