Installing Oracle 9i rel.2 on Redhat 7.3 [message #98692] |
Tue, 09 July 2002 13:33 |
Hari
Messages: 59 Registered: August 2000
|
Member |
|
|
I am trying to install Oracle 9i on Redhat 7.3. The error message that I get when I try to execute ./runInstaller is that JRE is not installed in /bin/java. Please go to www.javasoft.com and download the latest version of JRE ver 1.3 or later. Documentation suggests that this is not required at all for Redhat 7.0 and higher (installing jdk).
Any suggestions -
|
|
|
Re: Installing Oracle 9i rel.2 on Redhat 7.3 [message #98709 is a reply to message #98692] |
Thu, 01 August 2002 07:40 |
Brian
Messages: 38 Registered: October 1999
|
Member |
|
|
I am using RedHat 7.3 with Oracle 9.2.0.1.0 and kept getting could not find jre errors.
I had to install Blackdown JRE 1.1.8 under /usr/local/jre118_v3, then during the Oracle installation, after the installer copies the Sun JRE files, make the following symlink in another window.
IMPORTANT. You must make the changes below after the installer has copied the Oracle provided JRE and BEFORE the dbca kicks in to create the database (I prefer to do this before the linking starts)
mv $ORACLE_HOME/oracle.swd.jre $ORACLE_HOME/oracle.swd.jre.orig
ln -s /usr/local/jre118_v3 $ORACLE_HOME/oracle.swd.jre
Basically using Blackdown JRE instead of Oracle shipped JRE.
Hope that helps.
|
|
|
Re: Installing Oracle 9i rel.2 on Redhat 7.3 [message #98743 is a reply to message #98692] |
Fri, 04 October 2002 12:44 |
Yoom
Messages: 1 Registered: October 2002
|
Junior Member |
|
|
Hari
Did you get Linux 7.3 and 9i rel2 to work?
Does anyone get Linux 7.3 to work with Oracle 9i version 9.2.0.1.0 ?
I am keep getting this error:
ORA-12709: erros while loading create database character set.
Please let me know if anyone came across with the same problem and have solution for it.
Thanks in advance, Yoom
|
|
|
Re: Installing Oracle 9i rel.2 on Redhat 7.3 [message #98772 is a reply to message #98743] |
Thu, 12 December 2002 04:10 |
Aalok Shrestha
Messages: 1 Registered: December 2002
|
Junior Member |
|
|
Go for custom installation.
It worked with me.even without java.
PRE INSTLLATION:
> DID U CHECKED?
> * gcc
> * cpp
> * binutils
> * make
> * glibc-kernheaders
> * glibc-devel
> * kernel-header
>
> REMEMBER: # rpm -Uvh --force --nodeps binutils-2.10.0.18-1.rpm
>
> echo "kernel.shmmax = 2147483648" >> /etc/sysctl.conf
> # echo "kernel.sem = 1500 32000 1000 1000" >> /etc/sysctl.conf
> # sysctl -p
>
>
> Post-Installation Tasks
>
> A common problem is installing into a directory where ordinary users don't
> have read permission. To ensure everyone can access the oracle tools, run
> the following command:
>
> # chmod -R a+rX /opt/oracle/product/9.2.0
> Cleanup
>
> The earlier step in which the binutils package was downgraded allows Oracle
> to install, however, it will cause problems if you try to build other
> software at a later date. So we now restore the original package from the
> second Red Hat Linux 7.3 CD:
>
> # mount /mnt/cdrom
> # rpm -Uvh /mnt/cdrom/RedHat/RPMS/binutils-2.11.93.0.2-11.rpm
|
|
|