<?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: kill process the user in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/kill-process-the-user/m-p/2922421#M109830</link>
    <description>Hi Rene:&lt;BR /&gt;&lt;BR /&gt;# ps -u &lt;USER&gt;|awk 'NR&amp;gt;1 {print $1}'|xargs kill &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;...where &lt;USER&gt; is the 'uid' *or* the user's name.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;/USER&gt;&lt;/USER&gt;</description>
    <pubDate>Fri, 07 Mar 2003 21:35:31 GMT</pubDate>
    <dc:creator>James R. Ferguson</dc:creator>
    <dc:date>2003-03-07T21:35:31Z</dc:date>
    <item>
      <title>kill process the user</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/kill-process-the-user/m-p/2922420#M109829</link>
      <description>Hello &lt;BR /&gt;I have hpux 11i i need kill all process the one user (40 process)how to.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 07 Mar 2003 21:21:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/kill-process-the-user/m-p/2922420#M109829</guid>
      <dc:creator>Rene Mendez_4</dc:creator>
      <dc:date>2003-03-07T21:21:29Z</dc:date>
    </item>
    <item>
      <title>Re: kill process the user</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/kill-process-the-user/m-p/2922421#M109830</link>
      <description>Hi Rene:&lt;BR /&gt;&lt;BR /&gt;# ps -u &lt;USER&gt;|awk 'NR&amp;gt;1 {print $1}'|xargs kill &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;...where &lt;USER&gt; is the 'uid' *or* the user's name.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;/USER&gt;&lt;/USER&gt;</description>
      <pubDate>Fri, 07 Mar 2003 21:35:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/kill-process-the-user/m-p/2922421#M109830</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2003-03-07T21:35:31Z</dc:date>
    </item>
    <item>
      <title>Re: kill process the user</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/kill-process-the-user/m-p/2922422#M109831</link>
      <description>ps -ef | grep -i user | while read a&lt;BR /&gt;&amp;gt;do&lt;BR /&gt;&amp;gt;kill -9 $a&lt;BR /&gt;&amp;gt;done</description>
      <pubDate>Fri, 07 Mar 2003 22:19:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/kill-process-the-user/m-p/2922422#M109831</guid>
      <dc:creator>Michael Steele_2</dc:creator>
      <dc:date>2003-03-07T22:19:33Z</dc:date>
    </item>
    <item>
      <title>Re: kill process the user</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/kill-process-the-user/m-p/2922423#M109832</link>
      <description>Excuse me:&lt;BR /&gt;&lt;BR /&gt;ps -ef | grep -i user | while read a b c d&lt;BR /&gt;&amp;gt;do &lt;BR /&gt;&amp;gt;kill -9 $b &lt;BR /&gt;&amp;gt;done</description>
      <pubDate>Fri, 07 Mar 2003 22:20:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/kill-process-the-user/m-p/2922423#M109832</guid>
      <dc:creator>Michael Steele_2</dc:creator>
      <dc:date>2003-03-07T22:20:25Z</dc:date>
    </item>
    <item>
      <title>Re: kill process the user</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/kill-process-the-user/m-p/2922424#M109833</link>
      <description>Hi (again):&lt;BR /&gt;&lt;BR /&gt;Don't 'kill -9' except as an absolute last resort.  A 'sigkill' can't be trapped and therefore the process in question has no opportunity to remove temporary files and/or detach shared memory segments.  In the later case this leaves memory tied up.&lt;BR /&gt;&lt;BR /&gt;Instead, start with a 'kill -15' -- the default if a simple 'kill' without further argument is given; then if that doesn't work, use 'kill -1' and as a last resort 'kill -9'.  See 'man kill' for more information.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Fri, 07 Mar 2003 22:36:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/kill-process-the-user/m-p/2922424#M109833</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2003-03-07T22:36:08Z</dc:date>
    </item>
    <item>
      <title>Re: kill process the user</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/kill-process-the-user/m-p/2922425#M109834</link>
      <description>Here is how I do it...&lt;BR /&gt;&lt;BR /&gt;ps -fe|awk `/uname/{print "kill -15 " $2}` |sh&lt;BR /&gt;&lt;BR /&gt;uname should be the actual user name...&lt;BR /&gt;&lt;BR /&gt;Hope this helps...</description>
      <pubDate>Wed, 12 Mar 2003 14:21:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/kill-process-the-user/m-p/2922425#M109834</guid>
      <dc:creator>Tim Howell</dc:creator>
      <dc:date>2003-03-12T14:21:24Z</dc:date>
    </item>
  </channel>
</rss>

