Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: Moving Oracle software
Just moving it is definitely not OK if the directory structures are not identical. Here's just one example, $ORACLE_HOME/bin/loadjava
#!/bin/sh
#
# %W% %E%
#
unset JAVA_HOME
JAVA_HOME=/www/OraHome1/JRE
export JAVA_HOME
JRECLASSPATH=/www/OraHome1/JRE/lib/rt.jar:/www/OraHome1/JRE/lib/i18n.jar:/www/OraHome1/jlib/javax-ssl-1_1.jar:/www/OraHo export JRECLASSPATH
LD_LIBRARY_PATH=$ORACLE_HOME/lib:$JAVA_HOME/lib export LD_LIBRARY_PATH
exec $JAVA_HOME/bin/jre -classpath $JRECLASSPATH oracle.aurora.server.tools.loadjava.LoadJavaMain "$@"
There are no doubt other scripts like this, and I don't know what else. You will have to check whether a relink touches any of this, but I doubt it.
Reinstalling is probably the best idea.
Jared
"Babu Nagarajan" To: Multiple recipients of list ORACLE-L <ORACLE-L_at_fatcity.com> <orclbabu_at_hotm cc: ail.com> Subject: Re: Moving Oracle software Sent by: root_at_fatcity.c om 01/03/02 12:20 PM Please respond to ORACLE-L
i dont think you need a relink all. the path is always taken from your env variables so it does not need a relink...
may be on some patch levels you might need a relink. try it w/o relinking and it it works its fine....
i have tried it w/o relinking and it works fine...
babu
> If I copy the oracle software directories from one machine to another, > should I run "relink all" before using them? This is an 8.1.6.3 > implementation > running under Solaris 2.7. The directory names are different on the newbox
> it's hard > to decide whether they can all be ignored or not. > > Thanks > > > Kurt Wiegand > > IBM Global Services > Cable & Wireless Communications > Vienna VA > > > -- > Please see the official ORACLE-L FAQ: http://www.orafaq.com > -- > Author: Wiegand, Kurt > INET: Kurt.Wiegand_at_CWUSA.COM > > Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 > San Diego, California -- Public Internet access / Mailing Lists > -------------------------------------------------------------------- > To REMOVE yourself from this mailing list, send an E-Mail message > to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in > the message BODY, include a line containing: UNSUB ORACLE-L > (or the name of mailing list you want to be removed from). You may > also send the HELP command for other information (like subscribing). >
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Babu Nagarajan INET: orclbabu_at_hotmail.com Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: INET: Jared.Still_at_radisys.com Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).Received on Thu Jan 03 2002 - 15:30:52 CST