Oracle 8i installation on Solaris 8 [message #97351] |
Thu, 21 March 2002 18:23 |
Shrinivas
Messages: 3 Registered: March 2002
|
Junior Member |
|
|
After i installed Oracle 8i on solaris , I tried to open the server manager program using command "svrmgrl", i got an error stating that "svrmgrl commnad not found". but i found that the svrmgrl program was in the "bin" directory. what is the reason for this error and anyone suggest me how to rectify it.
|
|
|
Re: Oracle 8i installation on Solaris 8 [message #97354 is a reply to message #97351] |
Fri, 22 March 2002 11:20 |
Grant
Messages: 578 Registered: January 2002
|
Senior Member |
|
|
Your environment isn't set up. I source a script like the following for each DB. Change to your sid and site if you use. This will get you on the right track.
#!/bin/ksh
echo ""
## echo "USAGE: . prod"
echo ""
export ORACLE_SID="prod"
# get ORACLE_HOME from /var/opt/oracle/oratab
export ORACLE_HOME=`grep ^$ORACLE_SID: /var/opt/oracle/oratab | cut -d: -f2`
## export NLS_DATE_FORMAT='YYYY-MM-DD HH24:MI:SS' # This fixes ORA-01861 when importing
export ORACLE_BASE="/oradb/kham/u1/app/oracle/product"
export LD_LIBRARY_PATH="$ORACLE_HOME/lib:/usr/lib"
export SHLIB_PATH="$ORACLE_HOME/lib"
export NLS_LANG="AMERICAN_AMERICA.WE8ISO8859P1"
# export NLS_LANG="AMERICAN_AMERICA.US7ASCII"
export PATH=$ORACLE_HOME/bin:/usr/ccs/bin:/usr/sbin:$PATH
export TNS_ADMIN="/var/opt/oracle"
## export TNS_ADMIN="$ORACLE_HOME/network/admin"
echo "Be sure to check the ORA environment variables..."
echo "================================================="
echo ""
env |grep ORA
echo ""
|
|
|
|
Re: Oracle 8i installation on Solaris 8 [message #97575 is a reply to message #97351] |
Thu, 08 August 2002 22:45 |
Imran
Messages: 56 Registered: November 2001
|
Member |
|
|
because you had not set the environment variables i.e ORACLE_HOME, ORACLE_SID and PATH.
the command is like
set ORACLE_HOME=/youroraclehomedirectory/bin ;
export ORACLE_HOME
set PATH=$PATH:/youroraclehomedirecotory/bin
export PATH
mail me if this does not work.
tell me some good links to around with multibooting win98 with solaris 8 on intel.
|
|
|