Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Installing Oracle 9i on Redhat Linux 7.3

Status
Not open for further replies.

newbiepg

Programmer
Nov 6, 2002
181
IN
i can't run /mnt/cdrom/runInstaller from oracle user konsole there is a message No Such File or Directory.
how can I run the oracle cd to start installation?
I am trying to install Oracle 9i in Redhat 7.3
please help me.
 
From your burned CD Disk 1, execute runInstaller.
Do not cd to /mnt/cdrom!
as root: oracleserver:root# mount /mnt/cdrom
as oracle: oracleserver:eek:racle$ /mnt/cdrom/runInstaller

if you have any problems check if your x is working (try to execute 'xterm')

it would have been much much easier if you were installin from your own hd:
oracleserver:eek:racle$ /somepath/Disk1/runInstaller

 
thanks
can you tell me how to do it from the hard drive?

This is what I have done so far
I found where the runInstaller is finally
Now I am getting this error
The java Runtime Environment was not found at /bin/jre
Hence the Oracle Universal installer cannot be run

I have changed the /usr/oracle/.bashrc file and added this configuration

#oracle 9i
export ORACLE_HOME=/home/oracle/product/9.0.1
export ORACLE_BASE=/home/oracle
export ORA_NLS33=$ORACLE_HOME/ocommon/nls/admin/data
export ORACLE_TERM=xterm
export PATH=$PATH:$ORACLE_HOME/bin:/usr/local/java/bin
export TNS_ADMIN=$ORACLE_HOME/config

# change this NLS settings to suit your taste
# or don't put anything and fall back to
# american NLS settings
export NLS_LANG='croatian_croatia.ee8iso8859p2'
export NLS_SORT=xcroatian


if [ -z $LD_LIBRARY_PATH ]
then
export LD_LIBRARY_PATH=$ORACLE_HOME/lib
else
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$ORACLE_HOME/lib
fi
if [ -z $CLASSPATH ]
then
CLASSPATH=$ORACLE_HOME/JRE:$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib
CLASSPATH=$CLASSPATH:$ORACLE_HOME/network/jlib
export CLASSPATH
else
CLASSPATH=$CLASSPATH:$ORACLE_HOME/JRE:$ORACLE_HOME/jlib
CLASSPATH=$CLASSPATH:$ORACLE_HOME/rdbms/jlib:$ORACLE_HOME/network/jlib
export CLASSPATH
fi

the jre folder is in /usr/local/j2sdk1.4.1_01
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top