Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Oracle 8i Startup Script

Oracle 8i Startup Script

From: Stuart Shay <sshay_at_j51.com>
Date: Thu, 27 Dec 2001 02:16:28 -0500
Message-ID: <u2lin7ng1g7qfb@news.supernews.com>


Hello All:

Below I have a startup script that does not startup the Oracle Listner. It starts up the database correctly.

When I run the script from the command line it prompts me for the oracle account password. Is there anything that I may have left out.

O/S: SOL 8/Sparc
Oracle: Oracle 8i

Thanks
Stuart

Sym Links
 ln -s ../init.d/oracle /etc/rc3.d/S95oracle  ln -s ../init.d/oracle /etc/rc0.d/K15oracle chmod 0755 /etc/init.d/oracle

Startup Script : /etc/init.d/oracle

#!/sbin/sh

case $1 in

        start)

                echo "Starting Oracle Databae"
                su - oracle  -c "$ORACLE_HOME/bin/dbstart"

                echo "Starting TNS Listener"
                su - oracle -c "$ORACLE_HOME/bin/lsnrctl START"

                exit 0

;;
stop) su - oracle -c "$ORACLE_HOME/bin/lsnrctl STOP" su - oracle -c "$ORACLE_HOME/bin/dbshut"
;;
status) ps -ef | grep oracle
;;
Received on Thu Dec 27 2001 - 01:16:28 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US