<?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: Startup scripts in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/startup-scripts/m-p/2464078#M15216</link>
    <description>Praveen,&lt;BR /&gt;&lt;BR /&gt;I think this link will help you&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://my1.itrc.hp.com/cm/QuestionAnswer/1,1150,0x73e66c96588ad4118fef0090279cd0f9,00.html" target="_blank"&gt;http://my1.itrc.hp.com/cm/QuestionAnswer/1,1150,0x73e66c96588ad4118fef0090279cd0f9,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Mon, 13 Nov 2000 09:02:34 GMT</pubDate>
    <dc:creator>Lasse Knudsen</dc:creator>
    <dc:date>2000-11-13T09:02:34Z</dc:date>
    <item>
      <title>Startup scripts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/startup-scripts/m-p/2464071#M15209</link>
      <description>Hi&lt;BR /&gt;  As of 10.X the startup scripts cannot use any commands and libraries in /opt. Is it the same with 11.00. Actually i need to start oracle database during startup , oracle is installed in /opt/oraswr on my machine. Can I use startup scripts to start oracle at boot time.&lt;BR /&gt;Thanks in advance&lt;BR /&gt;Praveen</description>
      <pubDate>Fri, 10 Nov 2000 19:06:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/startup-scripts/m-p/2464071#M15209</guid>
      <dc:creator>Praveen Bezawada</dc:creator>
      <dc:date>2000-11-10T19:06:48Z</dc:date>
    </item>
    <item>
      <title>Re: Startup scripts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/startup-scripts/m-p/2464072#M15210</link>
      <description>Take a look at this file: /usr/share/doc/file_sys.txt (see section three)&lt;BR /&gt;&lt;BR /&gt;Also, see this thread: &lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,1150,0xecf95f260cafd4118fef0090279cd0f9,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,1150,0xecf95f260cafd4118fef0090279cd0f9,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Good Luck!</description>
      <pubDate>Fri, 10 Nov 2000 19:13:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/startup-scripts/m-p/2464072#M15210</guid>
      <dc:creator>Robert Gamble</dc:creator>
      <dc:date>2000-11-10T19:13:05Z</dc:date>
    </item>
    <item>
      <title>Re: Startup scripts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/startup-scripts/m-p/2464073#M15211</link>
      <description>Praveen:&lt;BR /&gt;&lt;BR /&gt;Using /opt is not a problem as long as you have transitioned through run-level 1.  The mounting of all volume groups is done via /sbin/rc1.d/S100localmount (in 10.20, at least), so by the time you reach level-3 (normally used for Oracle startup) you will be fine.&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Fri, 10 Nov 2000 19:15:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/startup-scripts/m-p/2464073#M15211</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2000-11-10T19:15:24Z</dc:date>
    </item>
    <item>
      <title>Re: Startup scripts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/startup-scripts/m-p/2464074#M15212</link>
      <description>Praveen:&lt;BR /&gt;&lt;BR /&gt;You should make the your database startup script one of the last to be executed eg. S999database (in your /sbin/rc2.d) then you will be able to use commands in /opt  - the reason is that this ensures that /opt is mounted (ie. all local filesystems are mounted) prior to attempting to start your database.&lt;BR /&gt;</description>
      <pubDate>Fri, 10 Nov 2000 19:16:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/startup-scripts/m-p/2464074#M15212</guid>
      <dc:creator>Kofi ARTHIABAH</dc:creator>
      <dc:date>2000-11-10T19:16:08Z</dc:date>
    </item>
    <item>
      <title>Re: Startup scripts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/startup-scripts/m-p/2464075#M15213</link>
      <description>Take a look at this attached script.The startup script link is S980oracle and the shutdown script is K150oracle. Below is a sample part of the database startup script in dbstart in $ORACLE_HOME:&lt;BR /&gt;&lt;BR /&gt;#  instance specific startup section&lt;BR /&gt;ORACLE_SID=database_name export ORACLE_SID&lt;BR /&gt;svrmgrl &amp;lt;&lt;EOF&gt;&lt;/EOF&gt;connect internal&lt;BR /&gt;startup&lt;BR /&gt;EOF&lt;BR /&gt;if [ $? -eq 0 ]; then&lt;BR /&gt;    echo ""&lt;BR /&gt;    echo "Database "${ORACLE_SID}" WARM started."&lt;BR /&gt;else&lt;BR /&gt;    echo ""&lt;BR /&gt;    echo "Database "${ORACLE_SID}" NOT started."&lt;BR /&gt;fi&lt;BR /&gt;</description>
      <pubDate>Mon, 13 Nov 2000 07:53:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/startup-scripts/m-p/2464075#M15213</guid>
      <dc:creator>CHRIS_ANORUO</dc:creator>
      <dc:date>2000-11-13T07:53:58Z</dc:date>
    </item>
    <item>
      <title>Re: Startup scripts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/startup-scripts/m-p/2464076#M15214</link>
      <description>Take a look at this attached script.The startup script link is S980oracle and the shutdown script is K150oracle. Below is a sample part of the database startup script in dbstart in $ORACLE_HOME:&lt;BR /&gt;&lt;BR /&gt;#  instance specific startup section&lt;BR /&gt;ORACLE_SID=database_name export ORACLE_SID&lt;BR /&gt;svrmgrl &amp;lt;&lt;EOF&gt;&lt;/EOF&gt;connect internal&lt;BR /&gt;startup&lt;BR /&gt;EOF&lt;BR /&gt;if [ $? -eq 0 ]; then&lt;BR /&gt;    echo ""&lt;BR /&gt;    echo "Database "${ORACLE_SID}" WARM started."&lt;BR /&gt;else&lt;BR /&gt;    echo ""&lt;BR /&gt;    echo "Database "${ORACLE_SID}" NOT started."&lt;BR /&gt;fi&lt;BR /&gt;</description>
      <pubDate>Mon, 13 Nov 2000 07:59:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/startup-scripts/m-p/2464076#M15214</guid>
      <dc:creator>CHRIS_ANORUO</dc:creator>
      <dc:date>2000-11-13T07:59:04Z</dc:date>
    </item>
    <item>
      <title>Re: Startup scripts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/startup-scripts/m-p/2464077#M15215</link>
      <description>Hi&lt;BR /&gt;   when I do su - oracle -c script, though oracle is getting started properly, the message which I get on console is getting garbled. when i check the /etc/rc.log I get message saying &lt;BR /&gt;stty : : Not a typewriter&lt;BR /&gt;    I think that .profile is getting executed when i do su - oracle and causing this error. What should I do fix this.&lt;BR /&gt; Thanks in advance&lt;BR /&gt;Praveen&lt;BR /&gt;</description>
      <pubDate>Mon, 13 Nov 2000 08:55:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/startup-scripts/m-p/2464077#M15215</guid>
      <dc:creator>Praveen Bezawada</dc:creator>
      <dc:date>2000-11-13T08:55:28Z</dc:date>
    </item>
    <item>
      <title>Re: Startup scripts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/startup-scripts/m-p/2464078#M15216</link>
      <description>Praveen,&lt;BR /&gt;&lt;BR /&gt;I think this link will help you&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://my1.itrc.hp.com/cm/QuestionAnswer/1,1150,0x73e66c96588ad4118fef0090279cd0f9,00.html" target="_blank"&gt;http://my1.itrc.hp.com/cm/QuestionAnswer/1,1150,0x73e66c96588ad4118fef0090279cd0f9,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 13 Nov 2000 09:02:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/startup-scripts/m-p/2464078#M15216</guid>
      <dc:creator>Lasse Knudsen</dc:creator>
      <dc:date>2000-11-13T09:02:34Z</dc:date>
    </item>
  </channel>
</rss>

