
In this Document
APPLIES TO:Oracle Database - Enterprise Edition - Version 9.2.0.1 and laterInformation in this document applies to any platform. GOALThis note is to check whether Real Application Clusters(RAC) option is linked into Oracle binary and whether a database instance is a RAC instance, and how to relink Oracle binary in RAC environment. SOLUTIONTo check whether Oracle binary is RAC enabled:As ORACLE_HOME owner:
ar -t $ORACLE_HOME/rdbms/lib/libknlopt.a|grep kcsm.o
ar -X32_64 -t $ORACLE_HOME/rdbms/lib/libknlopt.a|grep kcsm.o
To check whether a running instance is a RAC instance :Multiple options here:
$ORACLE_HOME/bin/sqlplus / as sysdba
SQL*Plus: Release 11.1.0.6.0 - Production on Fri Dec 26 12:11:13 2008 Copyright (c) 1982, 2007, Oracle. All rights reserved. Connected to: Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production With the Partitioning, Real Application Clusters, OLAP and Data Mining options
ps -ef| grep lmon | grep <ORACLE_SID>
oracle 627 1 0 Apr 15 ? 1:02 ora_lmon_racdb1
SQL> show parameter cluster_database
Steps to relink oracle binary with RAC option:Execute the following on all nodes where the ORACLE_HOME exists:
cd $ORACLE_HOME/rdbms/lib
make -f ins_rdbms.mk rac_on ioracle
cd $ORACLE_HOME/rdbms/lib
make -f ins_rdbms.mk ipc_rds ioracle
|