On 10R2 if the Oracle binaries are installed with the RAC, one can’t use those binaries to start Oracle Instance if CRS is not running, so in case when one needs to start the instance without CRS one needs to rebuild the oracle and it’s libraries to start the instance.

To turn off RAC
# link the oracle libraries
$ cd $ORACLE_HOME/rdbms/lib
$ make -f ins_rdbms.mk rac_off
# rebuild oracle
$ cd $ORACLE_HOME/bin
$ relink oracle

To turn on RAC
# link the oracle libraries
$ cd $ORACLE_HOME/rdbms/lib
$ make -f ins_rdbms.mk rac_on
# rebuild oracle
$ cd $ORACLE_HOME/bin
$ relink oracle

4 responses to “How to build oracle with RAC off/on?”

  1. rahul Avatar

    Hi,
    Very good short and important tip. Thanks for same.

    Like

  2. Jason Williams Avatar

    Excellent for providing very simple trick to enable and disable Oracle RAC. As per my assumption, this trick will be working on every unix and linux. Right?

    Like

  3. Hari Avatar
    Hari

    thanks for providing this
    Regards
    Hari

    Like

  4. Kiran Avatar
    Kiran

    Very Nice Concept

    Trgards
    Kiran

    Like

Leave a reply to Hari Cancel reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.