SQL> startup;
ORA-29702: error occurred in Cluster Group Service operation
SQL>
This error message indicates that it can't start the instance since CRS is not available. Here is the quick work-around to startup the instance. The option is to remove RAC option from your binaries and start the instance. Once you have resolved the CRS related issues, you can turn-on the RAC option back (of course, your instance needs to be down while to turn-on or turn-off the options). Here is how we turn-off:
cd $ORACLE_HOME/rdbms/lib
make -f ins_rdbms.mk rac_off ioracle
Set cluster_database=false
You should now be able to startup the instance without CRS stack being up and running.
SQL> Select * from v$option where parameter like 'Real%';
PARAMETER VALUE
---------------------------------------- ----------
Real Application Clusters FALSE
Real Application Testing TRUE
Turn-on the RAC option with:
make -f ins_rdbms.mk rac_on ioracle
Alternatively, you can install a non-rac oracle binaries to quickly start the instance.
By the way, you turn off other options in similar way such as Partitioning (part_on/part_off), DB Vault (dv_on/dv_off) etc..
Hi, I have just posted a link to this blog entry.
ReplyDeleteThanks for sharing this content.