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

Home -> Community -> Mailing Lists -> Oracle-L -> FW: start/stop-skript sunos5.7/EE8.1.5

FW: start/stop-skript sunos5.7/EE8.1.5

From: Lucia DeMeester <ldemeester_at_nm2.com>
Date: Mon, 31 Jul 2000 16:20:05 -0700
Message-Id: <10575.113430@fatcity.com>


Here is my dbora file
$ pwd

/etc/init.d
$ cat dbora

#!/bin/sh

# ORA_HOME should point to oracle home contained in env var $ORACLE_HOME ORA_HOME=/U01/app/oracle/product/8.1.6
ORA_OWNER=oracle

export ORA_HOME

if [ ! -f $ORA_HOME/bin/dbstart ]; then

        echo "Oracle startup: cannot start"
        exit

fi

case "$1" in

        'start')
                su - $ORA_OWNER -c $ORA_HOME/bin/dbstart
                su - $ORA_OWNER -c ". ~/.profile; $ORA_HOME/bin/lsnrctl
start" &
                ;;
        'stop')
                su - $ORA_OWNER -c ". ~/.profile; $ORA_HOME/bin/lsnrctl
stop"
                su - $ORA_OWNER -c $ORA_HOME/bin/dbshut &
                ;;

esac

Lucia
-----Original Message-----
From: oli_at_md.transnet.de [mailto:oli_at_md.transnet.de] Sent: Monday, July 24, 2000 1:10 PM
To: ORACLE-L_at_fatcity.com
Subject: start/stop-skript sunos5.7/EE8.1.5

Hi everyone,

I get my /etc/init.d/oracle not working. I have no example found in the admin
guide. Can someone please send me the skript?

thanks,
oli.

---

Oliver Artelt, System- und Datenbankadministration
---------------------------------------------------------------
  cubeoffice GmbH & Co.KG # jordanstrasse 7 # 39112 magdeburg
telefon: +49 (0)391 6 11 28 10 # telefax: +49 (0)391 6 11 28 10
   email: oli@cubeoffice.de # web: http://www.cubeoffice.de
---------------------------------------------------------------
--
Author: Oliver Artelt
  INET: oli_at_md.transnet.de

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).


--- Internet Message Header Follows ---
Received: from newsfeed.cts.com (209.68.192.199)
	by prophet.com (FirstClass Mail Server v5.11)
	transient id 183; 12:25:38 PM -0800
Received: from fatcity.UUCP (uucp_at_localhost)
	by newsfeed.cts.com (8.9.3/8.9.3) with UUCP id MAA13724;
	Mon, 24 Jul 2000 12:23:30 -0700 (PDT)
Received: by fatcity.com (04-May-2000/v1.0f-b69/bab) via UUCP id 0019946D;
Mon, 24 Jul 2000 12:09:39 -0800
Message-ID: <F001.0019946D.20000724120939_at_fatcity.com>
Date: Mon, 24 Jul 2000 12:09:39 -0800
To: Multiple recipients of list ORACLE-L <ORACLE-L_at_fatcity.com>
X-Comment: Oracle RDBMS Community Forum
X-Sender: Oliver Artelt <oli_at_md.transnet.de>
Sender: root_at_fatcity.com
Reply-To: ORACLE-L_at_fatcity.com
Errors-To: ML-ERRORS_at_fatcity.com
From: Oliver Artelt <oli_at_md.transnet.de>
Subject: start/stop-skript sunos5.7/EE8.1.5
Organization: Fat City Network Services, San Diego, California
X-ListServer: v1.0f, build 69; ListGuru (c) 1996-2000 Bruce A. Bergman
Precedence: bulk
Received on Mon Jul 31 2000 - 18:20:05 CDT

Original text of this message

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