<?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: Script to stop Apps in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/script-to-stop-apps/m-p/5079945#M440232</link>
    <description># id&lt;BR /&gt;uid=0(root) gid=3(sys) groups=0(root),1(other),2(bin),4(adm),5(daemon),6(mail),7(lp),20(users)&lt;BR /&gt;# ls -ltr&lt;BR /&gt;total 2&lt;BR /&gt;-rwxrwxrwx   1 root       sys             25 Nov 16 21:06 stopixos.sh&lt;BR /&gt;# ./stopixos.sh&lt;BR /&gt;./stopixos.sh: sbin/rc3.d/S910ixos:  not found.&lt;BR /&gt;# more stopixos.sh&lt;BR /&gt;sbin/rc3.d/S910ixos stop&lt;BR /&gt;</description>
    <pubDate>Fri, 16 Nov 2007 10:52:33 GMT</pubDate>
    <dc:creator>Eric Jacklin</dc:creator>
    <dc:date>2007-11-16T10:52:33Z</dc:date>
    <item>
      <title>Script to stop Apps</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-to-stop-apps/m-p/5079940#M440227</link>
      <description>Hi team,&lt;BR /&gt;&lt;BR /&gt;Here i would like to add below mention two commands in a .sh script so that i can run the same from my backup &lt;BR /&gt;&lt;BR /&gt;From root prompt i am using below mention commands &lt;BR /&gt;&lt;BR /&gt;#cd /sbin/rc3.d&lt;BR /&gt;#./S910ixos stop&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 16 Nov 2007 10:07:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-to-stop-apps/m-p/5079940#M440227</guid>
      <dc:creator>Eric Jacklin</dc:creator>
      <dc:date>2007-11-16T10:07:23Z</dc:date>
    </item>
    <item>
      <title>Re: Script to stop Apps</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-to-stop-apps/m-p/5079941#M440228</link>
      <description>Well, I'm not sure exactly what, if anything you're asking, but:&lt;BR /&gt;&lt;BR /&gt;yes you can put that in a script to stop that app before backup.  Or&lt;BR /&gt;&lt;BR /&gt;/sbin/rc3.d/S910ixos stop   (one-liner)  Note that you're running the "Start" link. It'll work, just a matter of style.&lt;BR /&gt;&lt;BR /&gt;or &lt;BR /&gt;&lt;BR /&gt;/sbin/rc2.d/K090ixos stop   (or similar) should be in the rc2.d directory.  Thats the "Kill" link.  as noted above.&lt;BR /&gt;&lt;BR /&gt;or I prefer running the script the links above point to. do an "ls -l /sbin/rc2.d/S910ixos" and see what the link points to and run that directly.  something like "/sbin/init.d/ixos stop" &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 16 Nov 2007 10:19:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-to-stop-apps/m-p/5079941#M440228</guid>
      <dc:creator>OldSchool</dc:creator>
      <dc:date>2007-11-16T10:19:42Z</dc:date>
    </item>
    <item>
      <title>Re: Script to stop Apps</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-to-stop-apps/m-p/5079942#M440229</link>
      <description>Hi &lt;BR /&gt;&lt;BR /&gt;I have include oneline command in .sh script but it is not working.&lt;BR /&gt;&lt;BR /&gt;Any further help or i am doing something wrong ?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;# ls -ltr&lt;BR /&gt;total 2&lt;BR /&gt;-rwxrwxrwx   1 root       sys             25 Nov 16 21:06 stopixos.sh&lt;BR /&gt;# more stopixos.sh&lt;BR /&gt;sbin/rc3.d/S910ixos stop&lt;BR /&gt;# stopixos.sh&lt;BR /&gt;sh: stopixos.sh:  not found.&lt;BR /&gt;#&lt;BR /&gt;</description>
      <pubDate>Fri, 16 Nov 2007 10:38:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-to-stop-apps/m-p/5079942#M440229</guid>
      <dc:creator>Eric Jacklin</dc:creator>
      <dc:date>2007-11-16T10:38:38Z</dc:date>
    </item>
    <item>
      <title>Re: Script to stop Apps</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-to-stop-apps/m-p/5079943#M440230</link>
      <description>Try running as ./stopixos.sh. its not found because its not in your path</description>
      <pubDate>Fri, 16 Nov 2007 10:42:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-to-stop-apps/m-p/5079943#M440230</guid>
      <dc:creator>David Bellamy</dc:creator>
      <dc:date>2007-11-16T10:42:41Z</dc:date>
    </item>
    <item>
      <title>Re: Script to stop Apps</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-to-stop-apps/m-p/5079944#M440231</link>
      <description>The bad news is that someone who lacks knowledge of such a simple concept as PATH'ing in UNIX has absolutely no business running as a super-user. You could destroy a system quite by accident in your present state --- so start learning (and do it as a regular user).</description>
      <pubDate>Fri, 16 Nov 2007 10:48:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-to-stop-apps/m-p/5079944#M440231</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2007-11-16T10:48:46Z</dc:date>
    </item>
    <item>
      <title>Re: Script to stop Apps</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-to-stop-apps/m-p/5079945#M440232</link>
      <description># id&lt;BR /&gt;uid=0(root) gid=3(sys) groups=0(root),1(other),2(bin),4(adm),5(daemon),6(mail),7(lp),20(users)&lt;BR /&gt;# ls -ltr&lt;BR /&gt;total 2&lt;BR /&gt;-rwxrwxrwx   1 root       sys             25 Nov 16 21:06 stopixos.sh&lt;BR /&gt;# ./stopixos.sh&lt;BR /&gt;./stopixos.sh: sbin/rc3.d/S910ixos:  not found.&lt;BR /&gt;# more stopixos.sh&lt;BR /&gt;sbin/rc3.d/S910ixos stop&lt;BR /&gt;</description>
      <pubDate>Fri, 16 Nov 2007 10:52:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-to-stop-apps/m-p/5079945#M440232</guid>
      <dc:creator>Eric Jacklin</dc:creator>
      <dc:date>2007-11-16T10:52:33Z</dc:date>
    </item>
    <item>
      <title>Re: Script to stop Apps</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-to-stop-apps/m-p/5079946#M440233</link>
      <description>Still facing the same problem check the above message.&lt;BR /&gt;</description>
      <pubDate>Fri, 16 Nov 2007 10:58:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-to-stop-apps/m-p/5079946#M440233</guid>
      <dc:creator>Eric Jacklin</dc:creator>
      <dc:date>2007-11-16T10:58:17Z</dc:date>
    </item>
    <item>
      <title>Re: Script to stop Apps</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-to-stop-apps/m-p/5079947#M440234</link>
      <description>&amp;gt; # more stopixos.sh&lt;BR /&gt;&amp;gt; sbin/rc3.d/S910ixos stop&lt;BR /&gt;&lt;BR /&gt;You are missing the initial '/' in the absolute path.  The command should read:&lt;BR /&gt;&lt;BR /&gt;/sbin/rc3.d/S910ixos stop&lt;BR /&gt;&lt;BR /&gt;However, you should be calling the script S910ixos is symlinked to.  Most likely:&lt;BR /&gt;&lt;BR /&gt;/sbin/init.d/ixos stop&lt;BR /&gt;&lt;BR /&gt;PCS&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 16 Nov 2007 11:06:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-to-stop-apps/m-p/5079947#M440234</guid>
      <dc:creator>spex</dc:creator>
      <dc:date>2007-11-16T11:06:57Z</dc:date>
    </item>
    <item>
      <title>Re: Script to stop Apps</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-to-stop-apps/m-p/5079948#M440235</link>
      <description>hint...&lt;BR /&gt;&lt;BR /&gt;can *YOU* find "sbin/rc3.d/S910ixos"?&lt;BR /&gt;&lt;BR /&gt;do you know why you can (or can't) find that file?&lt;BR /&gt;&lt;BR /&gt;another little hint....relative or absolute path?&lt;BR /&gt;&lt;BR /&gt;these are things that make systems go *boom*&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 16 Nov 2007 11:07:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-to-stop-apps/m-p/5079948#M440235</guid>
      <dc:creator>OldSchool</dc:creator>
      <dc:date>2007-11-16T11:07:36Z</dc:date>
    </item>
    <item>
      <title>Re: Script to stop Apps</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-to-stop-apps/m-p/5079949#M440236</link>
      <description>Lot of Hints but no solution.if somebody who is having expertise skill in unix why he will come to forums.</description>
      <pubDate>Fri, 16 Nov 2007 11:39:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-to-stop-apps/m-p/5079949#M440236</guid>
      <dc:creator>Eric Jacklin</dc:creator>
      <dc:date>2007-11-16T11:39:28Z</dc:date>
    </item>
    <item>
      <title>Re: Script to stop Apps</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-to-stop-apps/m-p/5079950#M440237</link>
      <description>"Lot of Hints but no solution.if somebody who is having expertise skill in unix why he will come to forums"&lt;BR /&gt;&lt;BR /&gt;Actually, you were given the correct and complete answer at least once.  &lt;BR /&gt;&lt;BR /&gt;the issue lies in the difference between&lt;BR /&gt;/sbin &lt;BR /&gt;         and&lt;BR /&gt;sbin&lt;BR /&gt;&lt;BR /&gt;as noted above.</description>
      <pubDate>Fri, 16 Nov 2007 12:24:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-to-stop-apps/m-p/5079950#M440237</guid>
      <dc:creator>OldSchool</dc:creator>
      <dc:date>2007-11-16T12:24:29Z</dc:date>
    </item>
    <item>
      <title>Re: Script to stop Apps</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-to-stop-apps/m-p/5079951#M440238</link>
      <description>&amp;gt;I would like to add below mention two commands in a .sh script so that I can run the same from my backup&lt;BR /&gt;#cd /sbin/rc3.d&lt;BR /&gt;#./S910ixos stop&lt;BR /&gt;&lt;BR /&gt;You should use an absolute path, not two commands.  Otherwise the cd may cause junk to accumulate in that directory.&lt;BR /&gt;&lt;BR /&gt;Your script should also start with an interpreter and if you don't know if all file systems are mounted, use:&lt;BR /&gt;#!/sbin/sh&lt;BR /&gt;</description>
      <pubDate>Sun, 18 Nov 2007 22:14:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-to-stop-apps/m-p/5079951#M440238</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2007-11-18T22:14:52Z</dc:date>
    </item>
  </channel>
</rss>

