How can I install Oracle 9i AS on Red Hat Advanced Server 3.0?

How can I install Oracle 9i AS on Red Hat Advanced Server 3.0?

I would like to know how to install Oracle 9i AS on Red Hat Advanced Server 3.0. I seem to be having trouble because the runInstaller screen is not working.

    Requires Free Membership to View

    When you register, my team of editors will also send you resources covering Linux administration and management; integration and interoperability between Linux, Windows and Unix; securing Linux and mixed-platform environments; and migrating to Linux.

    Cathleen A. Gagne, Senior Editorial Director

    By submitting your registration information to SearchEnterpriseLinux.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of SearchEnterpriseLinux.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

In order to install an Oracle9i database on AS 3, the "Oracle9i Patch Set" patchset and some other patches must be applied. Some errors can only be fixed by applying the 9.2.0.4 patchset.

Install the following RPMs:

  • compat-db-4.0.14-5.i386.rpm \
  • compat-gcc-7.3-2.96.122.i386.rpm \
  • compat-gcc-c++-7.3-2.96.122.i386.rpm \
  • compat-libstdc++-7.3-2.96.122.i386.rpm \
  • compat-libstdc++-devel-7.3-2.96.122.i386.rpm \
  • openmotif21-2.1.30-8.i386.rpm \
  • setarch-1.3-1.i386.rpm \
  • tcl-8.3.5-92.i386.rpm
You should also relink gcc so that the older gcc will be used during the Oracle installation su – root

mv /usr/bin/gcc /usr/bin/gcc323
ln -s /usr/bin/gcc296 /usr/bin/gcc
mv /usr/bin/g++ /usr/bin/g++323
ln -s /usr/bin/g++296 /usr/bin/g++

If you get the following message:

Error occurred during initialization of VM
Unable to load native library: /tmp/OraInstall2003-10-25_03-14-57PM/jre/lib/i386/libjava.so:
symbol __libc_wait, version GLIBC_2.0 not defined in file libc.so.6 with link time reference

you'll need to download the patch p3006854_9204_LINUX.zip from http://metalink.oracle.com.

You must also make sure you set your display environment, as there is no character-based install for Oracle.

(I.E. export DISPLAY=yourserver:0.0)

Always make sure you check your temp log files carefully: /tmp/OraInstall

Good luck!

This was first published in August 2004