<?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 create automatic script and run by oracle user in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/create-automatic-script-and-run-by-oracle-user/m-p/3782248#M263449</link>
    <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;I would like to create automatic startup script but that script should be run by oracle.&lt;BR /&gt;Please assist me how to this so it will start automatically once we reboot the server.&lt;BR /&gt;&lt;BR /&gt;I attached the script so you will have an idea.&lt;BR /&gt;&lt;BR /&gt;Thanks in advance.&lt;BR /&gt;&lt;BR /&gt;Adriatico</description>
    <pubDate>Wed, 03 May 2006 23:58:45 GMT</pubDate>
    <dc:creator>Ricky_4</dc:creator>
    <dc:date>2006-05-03T23:58:45Z</dc:date>
    <item>
      <title>create automatic script and run by oracle user</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-automatic-script-and-run-by-oracle-user/m-p/3782248#M263449</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;I would like to create automatic startup script but that script should be run by oracle.&lt;BR /&gt;Please assist me how to this so it will start automatically once we reboot the server.&lt;BR /&gt;&lt;BR /&gt;I attached the script so you will have an idea.&lt;BR /&gt;&lt;BR /&gt;Thanks in advance.&lt;BR /&gt;&lt;BR /&gt;Adriatico</description>
      <pubDate>Wed, 03 May 2006 23:58:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-automatic-script-and-run-by-oracle-user/m-p/3782248#M263449</guid>
      <dc:creator>Ricky_4</dc:creator>
      <dc:date>2006-05-03T23:58:45Z</dc:date>
    </item>
    <item>
      <title>Re: create automatic script and run by oracle user</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-automatic-script-and-run-by-oracle-user/m-p/3782249#M263450</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt; Put the following in the first line of your script,&lt;BR /&gt;&lt;BR /&gt;su - oracle&lt;BR /&gt;&lt;BR /&gt;save the script &amp;amp; move it to "/sbin/init.d" directory,&lt;BR /&gt;For Ex:&lt;BR /&gt;# mv /tmp/script /sbin/init.d/oracle&lt;BR /&gt;&lt;BR /&gt;Link the script to "/sbin/rc3.d" , to start the script in run level 3. The naming convention should be Sxxx&amp;lt;script name&amp;gt;.&lt;BR /&gt;For Ex:&lt;BR /&gt;# cd /sbin/rc3.d&lt;BR /&gt;# ln -s /sbin/init.d/oracle S987oracle&lt;BR /&gt;&lt;BR /&gt;If you any script to halt, put the same in "/sbin/rc2.d" and start the name with "K"&lt;BR /&gt;&lt;BR /&gt;Regds,&lt;BR /&gt;Saravanan&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 04 May 2006 00:45:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-automatic-script-and-run-by-oracle-user/m-p/3782249#M263450</guid>
      <dc:creator>m saravanan</dc:creator>
      <dc:date>2006-05-04T00:45:56Z</dc:date>
    </item>
    <item>
      <title>Re: create automatic script and run by oracle user</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-automatic-script-and-run-by-oracle-user/m-p/3782250#M263451</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Create a script in /sbin/init.d/oraclestart which contains&lt;BR /&gt;&lt;BR /&gt;su - oracle -c "startscript"&lt;BR /&gt;&lt;BR /&gt;Then execute the following&lt;BR /&gt;&lt;BR /&gt;cd /sbin/rc2.d&lt;BR /&gt;ln -s /sbin/init.d/oraclestart S999oraclestart&lt;BR /&gt;&lt;BR /&gt;You script will be executed when you reboot the server</description>
      <pubDate>Thu, 04 May 2006 00:47:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-automatic-script-and-run-by-oracle-user/m-p/3782250#M263451</guid>
      <dc:creator>Luk Vandenbussche</dc:creator>
      <dc:date>2006-05-04T00:47:41Z</dc:date>
    </item>
    <item>
      <title>Re: create automatic script and run by oracle user</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-automatic-script-and-run-by-oracle-user/m-p/3782251#M263452</link>
      <description>file /etc/oratab&lt;BR /&gt;instance:/oracle_path:Y&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 04 May 2006 00:47:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-automatic-script-and-run-by-oracle-user/m-p/3782251#M263452</guid>
      <dc:creator>Susik</dc:creator>
      <dc:date>2006-05-04T00:47:59Z</dc:date>
    </item>
    <item>
      <title>Re: create automatic script and run by oracle user</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-automatic-script-and-run-by-oracle-user/m-p/3782252#M263453</link>
      <description>All,&lt;BR /&gt;&lt;BR /&gt;Please check procedure below if it will work also as automatic shutdown script by following "Luk Vandenbussche" reply as startup script.&lt;BR /&gt;&lt;BR /&gt;procedure:&lt;BR /&gt;cd /sbin/rc2.d&lt;BR /&gt;ln -s /sbin/init.d/oraclestart K999oraclestart&lt;BR /&gt;&lt;BR /&gt;Thanks.&lt;BR /&gt;&lt;BR /&gt;Adriactico</description>
      <pubDate>Thu, 04 May 2006 19:29:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-automatic-script-and-run-by-oracle-user/m-p/3782252#M263453</guid>
      <dc:creator>Ricky_4</dc:creator>
      <dc:date>2006-05-04T19:29:26Z</dc:date>
    </item>
  </channel>
</rss>

