| Red Hat Docs > Manuals > Cluster Suite/GFS Manuals > |
| Red Hat GFS: Installing and Configuring Oracle9i RAC with GFS 6.0 | ||
|---|---|---|
| Prev | Chapter 3. Installing and Configuring Oracle9i RAC | Next |
Setting up a compatibility environment consists of installing libraries and setting up GCC.
The following compatibility libraries are required on your system to install Oracle Database 9.2:
compat-gcc
compat-libstdc++
compat-libstdc++-devel
compat-gcc-c++
Check to see if the libraries are installed by running the rpm -q command as follows:
# rpm -q compat-gcc compat-libstdc++ compat-libstdc++-devel compat-gcc-c++ |
Install any missing libraries using up2date.
Proceed to Section 3.2.2 Setting Up GCC.
Installing Oracle Database 9.2 requires using GCC 2.96 rather the default GCC 3.2 that ships with Red Hat Enterprise Linux 3. Before installing Oracle, set GCC 2.9.6 as the default GCC as follows:
Rename gcc to gcc32 and make gcc296 the default GCC:
# which gcc /usr/bin/gcc # cd /usr/bin # mv gcc gcc32 # ln -s gcc296 gcc |
Use the gcc --version command to verify that you are using GCC 2.9.6 (gcc296):
# gcc --version |
The resultant output from the command indicates the GCC level as follows:
gcc (GCC) 2.9.6 ... |
Proceed to Section 3.3 Preparing Oracle Nodes.