<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Oracle 10g startup issue in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-10g-startup-issue/m-p/3691748#M795442</link>
    <description>Can you post the entire startup script?  It appears that is was written rather strangely.  Something definitely does not look right.</description>
    <pubDate>Thu, 15 Dec 2005 09:39:52 GMT</pubDate>
    <dc:creator>Patrick Wallek</dc:creator>
    <dc:date>2005-12-15T09:39:52Z</dc:date>
    <item>
      <title>Oracle 10g startup issue</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-10g-startup-issue/m-p/3691740#M795434</link>
      <description>I am the sysadmin and not Oracle literate but here is the situation.  Oracle 10g installed and setup on HPUX 11i.&lt;BR /&gt;&lt;BR /&gt;script in /sbin/init.d/ called dbora&lt;BR /&gt;link to that from /sbin/rc3.d file is S990dbora&lt;BR /&gt;&lt;BR /&gt;We noticed that Oracle appeared to start and quite a few processes were there but a closer inspection by the dba showed that Oracle was in some sort of "mount" state instead of a started state.&lt;BR /&gt;&lt;BR /&gt;We have been doing troubleshooting today and it appears that the param start_msg is being passed into the dbora/S990dbora script during startup.  The case statement in the script does not have start_msg only start and stop.  The system then appears to do a stop on Oracle instead of a start.&lt;BR /&gt;&lt;BR /&gt;It must go into the background at that point because later we see some messages during startup from this script.  &lt;BR /&gt;&lt;BR /&gt;I don't understand why this param is being passed to it since it doesn't appear to expect it and I would appreciate any ideas anyone has.</description>
      <pubDate>Wed, 14 Dec 2005 18:23:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-10g-startup-issue/m-p/3691740#M795434</guid>
      <dc:creator>Mike Smith_33</dc:creator>
      <dc:date>2005-12-14T18:23:40Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle 10g startup issue</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-10g-startup-issue/m-p/3691741#M795435</link>
      <description>Hi Mike,&lt;BR /&gt;&lt;BR /&gt;When you say "Oracle appeared to start and quite a few processes and later on it is still in mount status. And then about the parameter start_msg". Then you notice that the script does a stop of oracle instead of start.&lt;BR /&gt;&lt;BR /&gt;It would be something to do with the way your oracle start/stop script is written. May be after the start statements, there is no ending in the case and the script is continuing with the next case which is to stop oracle. Also check with you PATH, DISPLAY and export statements. When a database is started it have to be mounted and then in open state for users to be able to use it.&lt;BR /&gt;&lt;BR /&gt;In the case statement this is how one would have.&lt;BR /&gt;&lt;BR /&gt;Check you script &lt;BR /&gt;case $1 in&lt;BR /&gt;start_msg)&lt;BR /&gt;        echo "Start Oracle"    ;;&lt;BR /&gt;stop_msg)&lt;BR /&gt;        echo "Stopping Oracle"  ;;&lt;BR /&gt;&lt;BR /&gt;'start')&lt;BR /&gt;       this is where you have the db start statements......&lt;BR /&gt;       ........&lt;BR /&gt;        ;;&lt;BR /&gt;&lt;BR /&gt;'stop')&lt;BR /&gt;        this is where you have the db stop statements....&lt;BR /&gt;       .........&lt;BR /&gt;        ;;&lt;BR /&gt;&lt;BR /&gt;*)&lt;BR /&gt;        echo "usage: $0 {start|stop}"&lt;BR /&gt;        ..........&lt;BR /&gt;        ;;&lt;BR /&gt;esac&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Indira A&lt;BR /&gt;</description>
      <pubDate>Wed, 14 Dec 2005 20:06:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-10g-startup-issue/m-p/3691741#M795435</guid>
      <dc:creator>Indira Aramandla</dc:creator>
      <dc:date>2005-12-14T20:06:43Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle 10g startup issue</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-10g-startup-issue/m-p/3691742#M795436</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;You can find the problem by testing this procedure manually, i.e., using /sbin/init.d/dbora start o stop, to see what is going on, you can put a set -x and set -v at the beginning of dbora.&lt;BR /&gt;If you still can't see what happend, you must find alert.ora file from this database, that will have all problems that occured during database startup.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;</description>
      <pubDate>Wed, 14 Dec 2005 20:45:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-10g-startup-issue/m-p/3691742#M795436</guid>
      <dc:creator>Julio Yamawaki</dc:creator>
      <dc:date>2005-12-14T20:45:55Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle 10g startup issue</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-10g-startup-issue/m-p/3691743#M795437</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;did you check the value of the ORACLE_START_STOP paramter in your /etc/rc.config.d/oracle ?&lt;BR /&gt;&lt;BR /&gt;normally, it should be set to 1&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;hope this helps&lt;BR /&gt;kind regards&lt;BR /&gt;yogeeraj</description>
      <pubDate>Wed, 14 Dec 2005 23:38:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-10g-startup-issue/m-p/3691743#M795437</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2005-12-14T23:38:28Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle 10g startup issue</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-10g-startup-issue/m-p/3691744#M795438</link>
      <description>I will assign points once I am able to determine the amount of assistance.&lt;BR /&gt;&lt;BR /&gt;Here are some answers:  &lt;BR /&gt;&lt;BR /&gt;Here is the Case statement, the only difference is that the start_msg section at the beginning was added by me.  It was not there previously.  I would like to know why the system is passing a parameter that the startup script is not expecting.&lt;BR /&gt;&lt;BR /&gt;case $1 in&lt;BR /&gt;'start_msg')&lt;BR /&gt;        echo "$0: startup start_msg"&lt;BR /&gt;        ;;    &lt;BR /&gt;'start')&lt;BR /&gt;        echo "$0: starting up" &amp;gt;&amp;gt; $LOG&lt;BR /&gt;        date &amp;gt;&amp;gt; $LOG&lt;BR /&gt;        # Start Oracle Net&lt;BR /&gt;        if [ -f $ORACLE_HOME/bin/tnslsnr ] ; then&lt;BR /&gt;             echo "starting Oracle Net Listener"&lt;BR /&gt;             $ORACLE_HOME/bin/lsnrctl start &amp;gt;&amp;gt; $LOG 2&amp;gt;&amp;amp;1 &amp;amp;&lt;BR /&gt;        fi&lt;BR /&gt;        echo "Starting Oracle databases"&lt;BR /&gt;        $ORACLE_HOME/bin/dbstart &amp;gt;&amp;gt; $LOG 2&amp;gt;&amp;amp;1 &amp;amp;&lt;BR /&gt;        emctl start agent&lt;BR /&gt;        ;;&lt;BR /&gt;'stop')&lt;BR /&gt;        echo "$0: shutting down" &amp;gt;&amp;gt; $LOG&lt;BR /&gt;        date &amp;gt;&amp;gt; $LOG&lt;BR /&gt;        # Stop Oracle Net&lt;BR /&gt;        if [ -f $ORACLE_HOME/bin/tnslsnr ] ; then&lt;BR /&gt;             echo "stopping Oracle Net Listener"&lt;BR /&gt;             $ORACLE_HOME/bin/lsnrctl stop &amp;gt;&amp;gt; $LOG 2&amp;gt;&amp;amp;1 &amp;amp;&lt;BR /&gt;        fi&lt;BR /&gt;        echo "stopping Oracle databases"&lt;BR /&gt;        $ORACLE_HOME/bin/dbshut &amp;gt;&amp;gt; $LOG 2&amp;gt;&amp;amp;1 &amp;amp;&lt;BR /&gt;        emctl stop agent&lt;BR /&gt;        ;;&lt;BR /&gt;*)&lt;BR /&gt;        echo "usage: $0 {start|stop}" &lt;BR /&gt;        exit &lt;BR /&gt;        ;;&lt;BR /&gt;esac&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I just spoke with the dba and he said it works if he does things manually.  He has reviewed the alert.ora and all comes up but it goes to alter mount state and not started. He is wondering why on a boot the system first tries to shutdown the database.  If it is a boot there should not be a database up.  We are trying to get a reboot today and will look at the set command.  He added echos to the dbstart script on yesterday but we never saw anything from it during startup.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Last but not least, I am unable to find any file related to Oracle in rc.config.d   That was something we looked at yesterday based on some other postings we saw.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 15 Dec 2005 09:00:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-10g-startup-issue/m-p/3691744#M795438</guid>
      <dc:creator>Mike Smith_33</dc:creator>
      <dc:date>2005-12-15T09:00:38Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle 10g startup issue</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-10g-startup-issue/m-p/3691745#M795439</link>
      <description>Mike,&lt;BR /&gt;&lt;BR /&gt;This is wrong&lt;BR /&gt;&lt;BR /&gt;---&lt;BR /&gt; if [ -f $ORACLE_HOME/bin/tnslsnr ] ; then&lt;BR /&gt;echo "starting Oracle Net Listener"&lt;BR /&gt;$ORACLE_HOME/bin/lsnrctl start &amp;gt;&amp;gt; $LOG 2&amp;gt;&amp;amp;1 &amp;amp;&lt;BR /&gt;fi&lt;BR /&gt;echo "Starting Oracle databases"&lt;BR /&gt;$ORACLE_HOME/bin/dbstart &amp;gt;&amp;gt; $LOG 2&amp;gt;&amp;amp;1 &amp;amp;&lt;BR /&gt;emctl start agent&lt;BR /&gt;---&lt;BR /&gt;You should not start oracle as the root user. In a startup script the ORACLE_HOME variable is not set. Starting oracle as root will make it unaccessible to users and is not supported.&lt;BR /&gt;&lt;BR /&gt;What you should do is run it as the oracle user, which hopefully you used to install it.&lt;BR /&gt;&lt;BR /&gt;/usr/bin/su - oracle -c "path to oracle startup script"&lt;BR /&gt;&lt;BR /&gt;That replaces the code above.&lt;BR /&gt;&lt;BR /&gt;That happens is the system changes to the oracle user, gets the proper environment like ORACLE_HOME and then proceeds to start the databse.&lt;BR /&gt;&lt;BR /&gt;Thats how I've always started oracle products and it's worked pretty well.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Thu, 15 Dec 2005 09:19:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-10g-startup-issue/m-p/3691745#M795439</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2005-12-15T09:19:51Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle 10g startup issue</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-10g-startup-issue/m-p/3691746#M795440</link>
      <description>Here is my current code:&lt;BR /&gt;&lt;BR /&gt;        su - oracle -c "lsnrctl start" 1&amp;gt;/dev/null 2&amp;gt;&amp;amp;1&lt;BR /&gt;        su - oracle -c dbstart 1&amp;gt;/dev/null 2&amp;gt;&amp;amp;1&lt;BR /&gt;&lt;BR /&gt;Good Luck,&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Thu, 15 Dec 2005 09:27:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-10g-startup-issue/m-p/3691746#M795440</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2005-12-15T09:27:25Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle 10g startup issue</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-10g-startup-issue/m-p/3691747#M795441</link>
      <description>Steven, that was not the entire code just the case section.  There is code above that as follows:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;if [ ! "$2" = "ORA_DB" ] ; then&lt;BR /&gt;   if [ "$PLATFORM" = "HP-UX" ] ; then&lt;BR /&gt;#     remsh $HOST -l $ORACLE -n "$0 $1 ORA_DB"&lt;BR /&gt;   if [ "$1" = "start" ]&lt;BR /&gt;   then&lt;BR /&gt;   su - oracle -c '/sbin/rc3.d/S990dbora start ORA_DB'&lt;BR /&gt;   else&lt;BR /&gt;   su - oracle -c '/sbin/rc3.d/S990dbora stop ORA_DB'&lt;BR /&gt;  fi&lt;BR /&gt;   exit&lt;BR /&gt;   else&lt;BR /&gt;      rsh $HOST -l $ORACLE  $0 $1 ORA_DB&lt;BR /&gt;      exit&lt;BR /&gt;   fi&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Apparently this thing runs the first time and then runs itself again as Oracle.  This is in a ServiceGuard cluster that was setup for us by a consultant.  I have about 2 months experience as an HP admin. This is the development node.  SG takes care of Oracle on the prod node so it is totally different startup on the other node.  This dbora stuff was put there by the consultant and we are pretty sure that all this was tested and ran correctly before he left.</description>
      <pubDate>Thu, 15 Dec 2005 09:34:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-10g-startup-issue/m-p/3691747#M795441</guid>
      <dc:creator>Mike Smith_33</dc:creator>
      <dc:date>2005-12-15T09:34:12Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle 10g startup issue</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-10g-startup-issue/m-p/3691748#M795442</link>
      <description>Can you post the entire startup script?  It appears that is was written rather strangely.  Something definitely does not look right.</description>
      <pubDate>Thu, 15 Dec 2005 09:39:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-10g-startup-issue/m-p/3691748#M795442</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2005-12-15T09:39:52Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle 10g startup issue</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-10g-startup-issue/m-p/3691749#M795443</link>
      <description>The only additions I have made are an occasional echo or date statement and I just added the -v at the top&lt;BR /&gt;&lt;BR /&gt;#  cat dbora&lt;BR /&gt;#! /bin/sh  -x -v&lt;BR /&gt;#&lt;BR /&gt;# Change the value of ORACLE_HOME to specify the correct Oracle home&lt;BR /&gt;# directory for you installation&lt;BR /&gt;date&lt;BR /&gt;ORACLE_HOME=/oracle/OraHome_1&lt;BR /&gt;#&lt;BR /&gt;# change the value of ORACLE to the login name of the &lt;BR /&gt;# oracle owner at your site&lt;BR /&gt;#&lt;BR /&gt;&lt;BR /&gt;ORACLE=oracle&lt;BR /&gt;&lt;BR /&gt;PATH=${PATH}:$ORACLE_HOME/bin:/usr/bin&lt;BR /&gt;HOST=`hostname`&lt;BR /&gt;PLATFORM=`uname`&lt;BR /&gt;export ORACLE_HOME PATH&lt;BR /&gt;#&lt;BR /&gt;if [ ! "$2" = "ORA_DB" ] ; then&lt;BR /&gt;   if [ "$PLATFORM" = "HP-UX" ] ; then&lt;BR /&gt;#     remsh $HOST -l $ORACLE -n "$0 $1 ORA_DB"&lt;BR /&gt;   if [ "$1" = "start" ]&lt;BR /&gt;   then&lt;BR /&gt;   su - oracle -c '/sbin/rc3.d/S990dbora start ORA_DB'&lt;BR /&gt;   else&lt;BR /&gt;   su - oracle -c '/sbin/rc3.d/S990dbora stop ORA_DB'&lt;BR /&gt;  fi&lt;BR /&gt;   exit&lt;BR /&gt;   else&lt;BR /&gt;      rsh $HOST -l $ORACLE  $0 $1 ORA_DB&lt;BR /&gt;      exit&lt;BR /&gt;   fi&lt;BR /&gt;fi&lt;BR /&gt;#&lt;BR /&gt;LOG=$ORACLE_HOME/startup.log&lt;BR /&gt;touch $LOG&lt;BR /&gt;chmod a+r $LOG&lt;BR /&gt;#&lt;BR /&gt;case $1 in&lt;BR /&gt;'start_msg')&lt;BR /&gt;        echo "$0: startup start_msg"&lt;BR /&gt;        ;;    &lt;BR /&gt;'start')&lt;BR /&gt;        echo "$0: starting up" &amp;gt;&amp;gt; $LOG&lt;BR /&gt;        date &amp;gt;&amp;gt; $LOG&lt;BR /&gt;        # Start Oracle Net&lt;BR /&gt;        if [ -f $ORACLE_HOME/bin/tnslsnr ] ; then&lt;BR /&gt;             echo "starting Oracle Net Listener"&lt;BR /&gt;             $ORACLE_HOME/bin/lsnrctl start &amp;gt;&amp;gt; $LOG 2&amp;gt;&amp;amp;1 &amp;amp;&lt;BR /&gt;        fi&lt;BR /&gt;        echo "Starting Oracle databases"&lt;BR /&gt;        $ORACLE_HOME/bin/dbstart &amp;gt;&amp;gt; $LOG 2&amp;gt;&amp;amp;1 &amp;amp;&lt;BR /&gt;        emctl start agent&lt;BR /&gt;        ;;&lt;BR /&gt;'stop')&lt;BR /&gt;        echo "$0: shutting down" &amp;gt;&amp;gt; $LOG&lt;BR /&gt;        date &amp;gt;&amp;gt; $LOG&lt;BR /&gt;        # Stop Oracle Net&lt;BR /&gt;        if [ -f $ORACLE_HOME/bin/tnslsnr ] ; then&lt;BR /&gt;             echo "stopping Oracle Net Listener"&lt;BR /&gt;             $ORACLE_HOME/bin/lsnrctl stop &amp;gt;&amp;gt; $LOG 2&amp;gt;&amp;amp;1 &amp;amp;&lt;BR /&gt;        fi&lt;BR /&gt;        echo "stopping Oracle databases"&lt;BR /&gt;        $ORACLE_HOME/bin/dbshut &amp;gt;&amp;gt; $LOG 2&amp;gt;&amp;amp;1 &amp;amp;&lt;BR /&gt;        emctl stop agent&lt;BR /&gt;        ;;&lt;BR /&gt;*)&lt;BR /&gt;        echo "usage: $0 {start|stop}" &lt;BR /&gt;        exit &lt;BR /&gt;        ;;&lt;BR /&gt;esac&lt;BR /&gt;#&lt;BR /&gt;date&lt;BR /&gt;exit&lt;BR /&gt;</description>
      <pubDate>Thu, 15 Dec 2005 09:50:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-10g-startup-issue/m-p/3691749#M795443</guid>
      <dc:creator>Mike Smith_33</dc:creator>
      <dc:date>2005-12-15T09:50:24Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle 10g startup issue</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-10g-startup-issue/m-p/3691750#M795444</link>
      <description>hi mike,&lt;BR /&gt;&lt;BR /&gt;one simple way to do it is:&lt;BR /&gt;....&lt;BR /&gt;'start')&lt;BR /&gt;&lt;BR /&gt;        # source the system configuration variables&lt;BR /&gt;        if [ -f /etc/rc.config ] ; then&lt;BR /&gt;                . /etc/rc.config&lt;BR /&gt;        else&lt;BR /&gt;                echo "ERROR: /etc/rc.config defaults file MISSING"&lt;BR /&gt;        fi&lt;BR /&gt;&lt;BR /&gt;        # Check to see if this script is allowed to run...&lt;BR /&gt;        if [ "$ORACLE_START_STOP" != 1 ]; then&lt;BR /&gt;                rval=2&lt;BR /&gt;        else&lt;BR /&gt;&lt;BR /&gt;        # Execute the commands to start your subsystem&lt;BR /&gt;         echo "/u01/app/oracle/product/8.1.7/bin/lsnrctl start "| su - oracle&lt;BR /&gt;         echo "/u01/app/oracle/product/8.1.7/bin/sqlplus /nolog &amp;lt;</description>
      <pubDate>Fri, 16 Dec 2005 00:01:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-10g-startup-issue/m-p/3691750#M795444</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2005-12-16T00:01:15Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle 10g startup issue</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-10g-startup-issue/m-p/3691751#M795445</link>
      <description>There is nothing wrong with your script; is is run twice.  Once as root, who changes it to run it as oracle.&lt;BR /&gt;The paramaters given to the script are part of the HP-UX startup paradigm ( first a start_msg to show what it's doing on the boot console, then a start to do the actual job ).&lt;BR /&gt;What can be the case is that your database is left in an 'unknown' state after starting and interrupting it for instance. What you have to do is: run the startup script and then do a shutdown abort.  Then try again to start the database with dbora start&lt;BR /&gt;&lt;BR /&gt;Good luck,&lt;BR /&gt;Philippe</description>
      <pubDate>Fri, 16 Dec 2005 03:53:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-10g-startup-issue/m-p/3691751#M795445</guid>
      <dc:creator>Philippe Vervoort</dc:creator>
      <dc:date>2005-12-16T03:53:47Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle 10g startup issue</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-10g-startup-issue/m-p/3691752#M795446</link>
      <description>Hi Mike,&lt;BR /&gt;&lt;BR /&gt;In my opinion you aren't doing the right way. You should have 5 files, for example: &lt;BR /&gt;&lt;BR /&gt;/sbin/init.d/dbora10 &lt;BR /&gt;/sbin/rc3.d/K110dbora10 &lt;BR /&gt;/sbin/rc2.d/S990dbora10 --&amp;gt; this and the above file are a link to /sbin/init.d/dbora10. &lt;BR /&gt;/disc&lt;N&gt;/.../scripts/start_boot.sh -- starts the db and services&lt;BR /&gt;/disc&lt;N&gt;/.../scripts/stop_boot.sh -- stops the db and services&lt;BR /&gt;&lt;BR /&gt;Look at my scripts (that works) at:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=982198" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=982198&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;&lt;BR /&gt;Eric Antunes&lt;/N&gt;&lt;/N&gt;</description>
      <pubDate>Fri, 16 Dec 2005 04:32:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-10g-startup-issue/m-p/3691752#M795446</guid>
      <dc:creator>Eric Antunes</dc:creator>
      <dc:date>2005-12-16T04:32:31Z</dc:date>
    </item>
  </channel>
</rss>

