分类: Oracle
2008-06-25 11:04:36
In some cases, you may want to disable the RAC options for testing purposes -- perhaps to run a or convert the RAC binaries to single instance binaries. In such a case, you can use the following procedure to convert the RAC installation to non-RAC. Disabling and enabling RAC options are available only for UNIX platforms. Windows installations do not support relinking binaries with RAC ON and OFF.
Use the following steps to disable RAC (known as RAC OFF):
cd $ORACLE_HOME/lib
make -f ins_rdbms.mk rac_off
This normally runs for few minutes and should not pose any errors.
make -f ins_rdbms.mk ioracle
Now the Oracle binaries are relinked with the RAC OFF option. You may have to edit the init.ora or SPFILE parameters accordingly. If errors occur in step 4, you may need to contact Oracle Support and log a service request with the trace and log files.
Use the following steps to enable RAC (known as RAC ON):
cd $ORACLE_HOME/lib
make -f ins_rdbms.mk rac_on
This normally runs for a few minutes and should not pose any errors.
make -f ins_rdbms.mk ioracle
Now the Oracle binaries are relinked with the RAC ON option. You may need to edit the init.ora or SPFILE parameters accordingly. If any errors occur in step 4, you may need to contact Oracle Support and log a service request with the trace and log files.