<?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 runing services in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/runing-services/m-p/4960222#M415522</link>
    <description>Hi;&lt;BR /&gt;&lt;BR /&gt;is there any command, to see all the up and running process(services).&lt;BR /&gt;&lt;BR /&gt;Except "ps -aef, ps -ef |grep &lt;PS_NAME&gt;". Because if we have around 200 process running in a server, it is very defficult to have a clear picture or remember all the running process. &lt;BR /&gt;&lt;BR /&gt;Cheers&lt;BR /&gt;indrajit&lt;/PS_NAME&gt;</description>
    <pubDate>Wed, 15 Feb 2006 21:06:43 GMT</pubDate>
    <dc:creator>Indrajit_1</dc:creator>
    <dc:date>2006-02-15T21:06:43Z</dc:date>
    <item>
      <title>runing services</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/runing-services/m-p/4960222#M415522</link>
      <description>Hi;&lt;BR /&gt;&lt;BR /&gt;is there any command, to see all the up and running process(services).&lt;BR /&gt;&lt;BR /&gt;Except "ps -aef, ps -ef |grep &lt;PS_NAME&gt;". Because if we have around 200 process running in a server, it is very defficult to have a clear picture or remember all the running process. &lt;BR /&gt;&lt;BR /&gt;Cheers&lt;BR /&gt;indrajit&lt;/PS_NAME&gt;</description>
      <pubDate>Wed, 15 Feb 2006 21:06:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/runing-services/m-p/4960222#M415522</guid>
      <dc:creator>Indrajit_1</dc:creator>
      <dc:date>2006-02-15T21:06:43Z</dc:date>
    </item>
    <item>
      <title>Re: runing services</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/runing-services/m-p/4960223#M415523</link>
      <description>Hi Indrajit, &lt;BR /&gt;&lt;BR /&gt;"top" will also show you the list of running processes. &lt;BR /&gt;&lt;BR /&gt;-Arun</description>
      <pubDate>Wed, 15 Feb 2006 22:52:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/runing-services/m-p/4960223#M415523</guid>
      <dc:creator>Arunvijai_4</dc:creator>
      <dc:date>2006-02-15T22:52:32Z</dc:date>
    </item>
    <item>
      <title>Re: runing services</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/runing-services/m-p/4960224#M415524</link>
      <description>&lt;BR /&gt;Hi Indrajit,&lt;BR /&gt;&lt;BR /&gt;#ps --&amp;gt;  is the cmmond to list all process that are currently running.&lt;BR /&gt;&lt;BR /&gt;#top --&amp;gt; will list the TOP ( in terms of utilization)&lt;BR /&gt;&lt;BR /&gt;With Regards,&lt;BR /&gt;&lt;BR /&gt;Siva.</description>
      <pubDate>Wed, 15 Feb 2006 23:04:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/runing-services/m-p/4960224#M415524</guid>
      <dc:creator>Sivakumar TS</dc:creator>
      <dc:date>2006-02-15T23:04:25Z</dc:date>
    </item>
    <item>
      <title>Re: runing services</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/runing-services/m-p/4960225#M415525</link>
      <description>hi&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;if you wnat to know the services which up and running you can use the netstat -an or top command.&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;&lt;BR /&gt;tvs</description>
      <pubDate>Wed, 15 Feb 2006 23:12:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/runing-services/m-p/4960225#M415525</guid>
      <dc:creator>Tvs</dc:creator>
      <dc:date>2006-02-15T23:12:29Z</dc:date>
    </item>
    <item>
      <title>Re: runing services</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/runing-services/m-p/4960226#M415526</link>
      <description>You can use ps command with state information to find the process running status as,&lt;BR /&gt;&lt;BR /&gt;state          The state of the process:&lt;BR /&gt;&lt;BR /&gt;                    0    Nonexistent&lt;BR /&gt;                    W    Waiting&lt;BR /&gt;                    R    Running&lt;BR /&gt;                    I    Intermediate&lt;BR /&gt;                    Z    Terminated&lt;BR /&gt;                    T    Stopped&lt;BR /&gt;                    X    Growing&lt;BR /&gt;&lt;BR /&gt;--&lt;BR /&gt;Muthu</description>
      <pubDate>Thu, 16 Feb 2006 00:48:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/runing-services/m-p/4960226#M415526</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2006-02-16T00:48:20Z</dc:date>
    </item>
    <item>
      <title>Re: runing services</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/runing-services/m-p/4960227#M415527</link>
      <description>To get only running state process then,&lt;BR /&gt;&lt;BR /&gt;UNIX95= ps -ef -o state,comm,pid | grep -w 'R'&lt;BR /&gt;&lt;BR /&gt;will give it.&lt;BR /&gt;&lt;BR /&gt;--&lt;BR /&gt;Muthu</description>
      <pubDate>Thu, 16 Feb 2006 00:49:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/runing-services/m-p/4960227#M415527</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2006-02-16T00:49:08Z</dc:date>
    </item>
    <item>
      <title>Re: runing services</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/runing-services/m-p/4960228#M415528</link>
      <description>Hi All;&lt;BR /&gt;&lt;BR /&gt;Thanks for ur kind reply. Actually, i was looking for some other command. i have work with top, inetstat, glance etc.. Anyway.. thanks&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Cheers&lt;BR /&gt;indrajit</description>
      <pubDate>Mon, 20 Feb 2006 15:20:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/runing-services/m-p/4960228#M415528</guid>
      <dc:creator>Indrajit_1</dc:creator>
      <dc:date>2006-02-20T15:20:14Z</dc:date>
    </item>
  </channel>
</rss>

