<?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: Removing the loop script which started by at command in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/removing-the-loop-script-which-started-by-at-command/m-p/5015496#M763072</link>
    <description>&amp;gt;Killing the parent process works...&lt;BR /&gt;&lt;BR /&gt;I was really interested in seeing the whole tree.  But it could be explained by a simple for/while loop with a sleep.</description>
    <pubDate>Tue, 28 Nov 2006 03:25:47 GMT</pubDate>
    <dc:creator>Dennis Handly</dc:creator>
    <dc:date>2006-11-28T03:25:47Z</dc:date>
    <item>
      <title>Removing the loop script which started by at command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/removing-the-loop-script-which-started-by-at-command/m-p/5015489#M763065</link>
      <description>Hi.,&lt;BR /&gt;&lt;BR /&gt;I started a loop script which is running  coninously in a time of 3 seconds...by the at command..&lt;BR /&gt;&lt;BR /&gt;I dont know how to stop the script., When I try to kill the process since it is a loop command the process ID get changed immediately and I cant able to kill the process.&lt;BR /&gt;&lt;BR /&gt;I deleted the script which the 'at' command used to start the loop., but it doesnt stop..&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Suseendran ,A</description>
      <pubDate>Thu, 23 Nov 2006 01:18:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/removing-the-loop-script-which-started-by-at-command/m-p/5015489#M763065</guid>
      <dc:creator>susee_sundar</dc:creator>
      <dc:date>2006-11-23T01:18:44Z</dc:date>
    </item>
    <item>
      <title>Re: Removing the loop script which started by at command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/removing-the-loop-script-which-started-by-at-command/m-p/5015490#M763066</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;Certain solution:&lt;BR /&gt;Stop the server, restart it, the script will no longer be running.&lt;BR /&gt;&lt;BR /&gt;Other possibilities:&lt;BR /&gt;/sbin/init.d/cron stop&lt;BR /&gt;&lt;BR /&gt;I know Linux has a separate daemon for cron, but I think HP-UX has not gone to that insanity yes. If cron is spawning it, this will help. &lt;BR /&gt;&lt;BR /&gt;After stopping cron, you may need to kill the current version of the script.&lt;BR /&gt;&lt;BR /&gt;This may not help, since the script is spawning itself every three seconds.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Thu, 23 Nov 2006 01:44:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/removing-the-loop-script-which-started-by-at-command/m-p/5015490#M763066</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2006-11-23T01:44:47Z</dc:date>
    </item>
    <item>
      <title>Re: Removing the loop script which started by at command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/removing-the-loop-script-which-started-by-at-command/m-p/5015491#M763067</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;try to do:&lt;BR /&gt;&lt;BR /&gt;1. at -l&lt;BR /&gt;&lt;BR /&gt;2. at -r &lt;JOB-ID&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;kind regards&lt;BR /&gt;yogeeraj&lt;/JOB-ID&gt;</description>
      <pubDate>Thu, 23 Nov 2006 01:48:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/removing-the-loop-script-which-started-by-at-command/m-p/5015491#M763067</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2006-11-23T01:48:14Z</dc:date>
    </item>
    <item>
      <title>Re: Removing the loop script which started by at command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/removing-the-loop-script-which-started-by-at-command/m-p/5015492#M763068</link>
      <description>&lt;!--!*#--&gt;&amp;gt;I deleted the script which the 'at' command used to start the loop.&lt;BR /&gt;&lt;BR /&gt;That should do it unless your script makes a copy of itself when it invokes at(1)?  Or do you use at -f?&lt;BR /&gt;&lt;BR /&gt;&amp;gt;SEP: If cron is spawning it, this will help.  After stopping cron, &lt;BR /&gt;&lt;BR /&gt;You might be able to suspend cron by using:&lt;BR /&gt;   kill -STOP cron-pid&lt;BR /&gt;&lt;BR /&gt;Then hunt down and clean up your script.  Then resume by:&lt;BR /&gt;   kill -CONT cron-pid</description>
      <pubDate>Mon, 27 Nov 2006 22:00:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/removing-the-loop-script-which-started-by-at-command/m-p/5015492#M763068</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2006-11-27T22:00:56Z</dc:date>
    </item>
    <item>
      <title>Re: Removing the loop script which started by at command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/removing-the-loop-script-which-started-by-at-command/m-p/5015493#M763069</link>
      <description>Hi I killed the cron process by&lt;BR /&gt;&lt;BR /&gt;kill -9 cron&lt;BR /&gt;&lt;BR /&gt;now there is no more cron process running in my server., but stilll&lt;BR /&gt;&lt;BR /&gt;[root@nibappsun07 /]$ ps -eaf | grep sleep&lt;BR /&gt;   build 29854  4863  0 12:10:54 ?        0:00 sleep 5&lt;BR /&gt;   build 29852  6664  0 12:10:53 ?        0:00 sleep 5&lt;BR /&gt;   build 29850  4683  0 12:10:53 ?        0:00 sleep 3&lt;BR /&gt;[root@nibappsun07 /]$&lt;BR /&gt;[root@nibappsun07 /]$&lt;BR /&gt;[root@nibappsun07 /]$ ps -eaf | grep sleep&lt;BR /&gt;   build 29854  4863  0 12:10:54 ?        0:00 sleep 5&lt;BR /&gt;   build 29852  6664  0 12:10:53 ?        0:00 sleep 5&lt;BR /&gt;   build 29858  4683  0 12:10:56 ?        0:00 sleep 3&lt;BR /&gt;    root 29860 29655  0 12:10:56 pts/14   0:00 grep sleep&lt;BR /&gt;[root@nibappsun07 /]$ ps -eaf | grep sleep&lt;BR /&gt;   build 29864  4863  0 12:10:59 ?        0:00 sleep 5&lt;BR /&gt;   build 29862  6664  0 12:10:58 ?        0:00 sleep 5&lt;BR /&gt;   build 29866  4683  0 12:10:59 ?        0:00 sleep 3&lt;BR /&gt;    root 29868 29655  0 12:11:00 pts/14   0:00 grep sleep&lt;BR /&gt;[root@nibappsun07 /]$ ps -eaf | grep sleep&lt;BR /&gt;   build 29883  4863  0 12:11:09 ?        0:00 sleep 5&lt;BR /&gt;   build 29881  6664  0 12:11:08 ?        0:00 sleep 5&lt;BR /&gt;   build 29879  4683  0 12:11:08 ?        0:00 sleep 3&lt;BR /&gt;    root 29885 29655  0 12:11:10 pts/14   0:00 grep sleep&lt;BR /&gt;[root@nibappsun07 /]$&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Still my process is running....&lt;BR /&gt;</description>
      <pubDate>Tue, 28 Nov 2006 01:44:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/removing-the-loop-script-which-started-by-at-command/m-p/5015493#M763069</guid>
      <dc:creator>susee_sundar</dc:creator>
      <dc:date>2006-11-28T01:44:10Z</dc:date>
    </item>
    <item>
      <title>Re: Removing the loop script which started by at command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/removing-the-loop-script-which-started-by-at-command/m-p/5015494#M763070</link>
      <description>&amp;gt;now there is no more cron process running in my server, but still my process is running.&lt;BR /&gt;&lt;BR /&gt;I see 29854 twice, if you were fast, you could kill it.  :-)  Can you make sure cron didn't restart?&lt;BR /&gt;&lt;BR /&gt;Why are there 3 "sleep"s?  You might want to use the following to show the whole tree:&lt;BR /&gt;UNIX95= ps -Hfu build&lt;BR /&gt;&lt;BR /&gt;If you are really using at(1), you could add "build" in /usr/lib/cron/at.deny.&lt;BR /&gt;&lt;BR /&gt;You could try killing the parent process for sleep: 4863, 6664, 4683&lt;BR /&gt;&lt;BR /&gt;You might want to do "ps -fp 4863 -p 6664 -p 4683" first, to see what they are.</description>
      <pubDate>Tue, 28 Nov 2006 02:11:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/removing-the-loop-script-which-started-by-at-command/m-p/5015494#M763070</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2006-11-28T02:11:13Z</dc:date>
    </item>
    <item>
      <title>Re: Removing the loop script which started by at command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/removing-the-loop-script-which-started-by-at-command/m-p/5015495#M763071</link>
      <description>Hi Thanks to all..,,&lt;BR /&gt;&lt;BR /&gt;Killing the parent process works...&lt;BR /&gt;Really happy to share my cheers with all..&lt;BR /&gt;&lt;BR /&gt;Here is for a Glance &lt;BR /&gt;__________________________________________&lt;BR /&gt;&lt;BR /&gt;[build@nibappsun07 build]$ kill -9 4863&lt;BR /&gt;[build@nibappsun07 build]$&lt;BR /&gt;[build@nibappsun07 build]$ ps -eaf |grep sleep&lt;BR /&gt;   build  8476     1  0 13:39:16 ?        0:00 sleep 5&lt;BR /&gt;   build  8478  6664  0 13:39:17 ?        0:00 sleep 5&lt;BR /&gt;   build  8480  4683  0 13:39:17 ?        0:00 sleep 3&lt;BR /&gt;   build  8482  8322  0 13:39:20 pts/12   0:00 grep sleep&lt;BR /&gt;[build@nibappsun07 build]$&lt;BR /&gt;[build@nibappsun07 build]$&lt;BR /&gt;[build@nibappsun07 build]$ kill -9 6664&lt;BR /&gt;[build@nibappsun07 build]$ ps -eaf |grep sleep&lt;BR /&gt;   build  8505     1  0 13:39:37 ?        0:00 sleep 5&lt;BR /&gt;   build  8509  8322  0 13:39:40 pts/12   0:00 grep sleep&lt;BR /&gt;   build  8507  4683  0 13:39:38 ?        0:00 sleep 3&lt;BR /&gt;[build@nibappsun07 build]$ kill -9 4683&lt;BR /&gt;[build@nibappsun07 build]$&lt;BR /&gt;[build@nibappsun07 build]$&lt;BR /&gt;[build@nibappsun07 build]$ ps -eaf |grep sleep&lt;BR /&gt;[build@nibappsun07 build]$&lt;BR /&gt;[build@nibappsun07 build]$&lt;BR /&gt;&lt;BR /&gt;_______________________________&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Suseendran, A</description>
      <pubDate>Tue, 28 Nov 2006 03:12:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/removing-the-loop-script-which-started-by-at-command/m-p/5015495#M763071</guid>
      <dc:creator>susee_sundar</dc:creator>
      <dc:date>2006-11-28T03:12:55Z</dc:date>
    </item>
    <item>
      <title>Re: Removing the loop script which started by at command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/removing-the-loop-script-which-started-by-at-command/m-p/5015496#M763072</link>
      <description>&amp;gt;Killing the parent process works...&lt;BR /&gt;&lt;BR /&gt;I was really interested in seeing the whole tree.  But it could be explained by a simple for/while loop with a sleep.</description>
      <pubDate>Tue, 28 Nov 2006 03:25:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/removing-the-loop-script-which-started-by-at-command/m-p/5015496#M763072</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2006-11-28T03:25:47Z</dc:date>
    </item>
    <item>
      <title>Re: Removing the loop script which started by at command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/removing-the-loop-script-which-started-by-at-command/m-p/5015497#M763073</link>
      <description>Thanks to all</description>
      <pubDate>Fri, 01 Dec 2006 03:48:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/removing-the-loop-script-which-started-by-at-command/m-p/5015497#M763073</guid>
      <dc:creator>susee_sundar</dc:creator>
      <dc:date>2006-12-01T03:48:27Z</dc:date>
    </item>
  </channel>
</rss>

