<?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: Identify a process in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/identify-a-process/m-p/3766868#M785589</link>
    <description>I just installed the newest Webmin V. 1.270&lt;BR /&gt;Will watch what happens.</description>
    <pubDate>Thu, 06 Apr 2006 06:08:27 GMT</pubDate>
    <dc:creator>Kalin Evtimov</dc:creator>
    <dc:date>2006-04-06T06:08:27Z</dc:date>
    <item>
      <title>Identify a process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/identify-a-process/m-p/3766856#M785577</link>
      <description>Hi!&lt;BR /&gt;On my machine (Hp-ux 11.23) there is a perl-programm, which sometimes doesn't finish correctly (in my opinion), because it runs constantly with alsmost 100% of CPU-time. I would like to identify which programm starts, but I have no idea how to do this. How can I determine which programm was run by perl. As I am running webmin, I always get&lt;BR /&gt;&lt;BR /&gt;1212:07 /opt/perl_64/bin/perl /usr/local/webmin-1.260/miniserv.pl /etc/&lt;BR /&gt;&lt;BR /&gt;for any perl-programm run by webmin.&lt;BR /&gt;&lt;BR /&gt;Thanks for any ideas!</description>
      <pubDate>Thu, 06 Apr 2006 03:16:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/identify-a-process/m-p/3766856#M785577</guid>
      <dc:creator>Kalin Evtimov</dc:creator>
      <dc:date>2006-04-06T03:16:36Z</dc:date>
    </item>
    <item>
      <title>Re: Identify a process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/identify-a-process/m-p/3766857#M785578</link>
      <description>if you see in top result that the perl programm is using 100% CPU, that means that it is not a process ran by this one, but the perl script itself... &lt;BR /&gt;</description>
      <pubDate>Thu, 06 Apr 2006 03:21:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/identify-a-process/m-p/3766857#M785578</guid>
      <dc:creator>Antonio Cardoso_1</dc:creator>
      <dc:date>2006-04-06T03:21:29Z</dc:date>
    </item>
    <item>
      <title>Re: Identify a process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/identify-a-process/m-p/3766858#M785579</link>
      <description>Get the parent process ID.&lt;BR /&gt;&lt;BR /&gt;# ps -ef | grep webmin &lt;BR /&gt;&lt;BR /&gt;3rd field gives that.&lt;BR /&gt;&lt;BR /&gt;--&lt;BR /&gt;Muthu</description>
      <pubDate>Thu, 06 Apr 2006 03:22:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/identify-a-process/m-p/3766858#M785579</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2006-04-06T03:22:55Z</dc:date>
    </item>
    <item>
      <title>Re: Identify a process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/identify-a-process/m-p/3766859#M785580</link>
      <description>Kalin,&lt;BR /&gt;what do you mean by "which program starts"?&lt;BR /&gt;&lt;BR /&gt;To find the process taking the CPU: top&lt;BR /&gt;which should give you the PID&lt;BR /&gt;&lt;BR /&gt;You can then use: ps -ef | grep PID_value&lt;BR /&gt;to get the ParentPID (second column).&lt;BR /&gt;&lt;BR /&gt;Repeating this process will eventually lead you to the process that started all your sub-processes.</description>
      <pubDate>Thu, 06 Apr 2006 03:23:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/identify-a-process/m-p/3766859#M785580</guid>
      <dc:creator>Peter Godron</dc:creator>
      <dc:date>2006-04-06T03:23:57Z</dc:date>
    </item>
    <item>
      <title>Re: Identify a process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/identify-a-process/m-p/3766860#M785581</link>
      <description>Webmin's web server, which is written in perl, starts modules, also written in perl. The web severs' process is always the parent. But it is not the one, causing the problem. One of the procs started by webmin causes a problem, but I cannot identificate it, as they are run over the web server from webmin, which causes that all these perl-processes have the same name.</description>
      <pubDate>Thu, 06 Apr 2006 03:27:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/identify-a-process/m-p/3766860#M785581</guid>
      <dc:creator>Kalin Evtimov</dc:creator>
      <dc:date>2006-04-06T03:27:22Z</dc:date>
    </item>
    <item>
      <title>Re: Identify a process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/identify-a-process/m-p/3766861#M785582</link>
      <description>Don't these perl modules have any tracing/logging switches you could activate?&lt;BR /&gt;If not, maybe consider adding some?</description>
      <pubDate>Thu, 06 Apr 2006 04:00:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/identify-a-process/m-p/3766861#M785582</guid>
      <dc:creator>Antonio Cardoso_1</dc:creator>
      <dc:date>2006-04-06T04:00:14Z</dc:date>
    </item>
    <item>
      <title>Re: Identify a process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/identify-a-process/m-p/3766862#M785583</link>
      <description>If the process are started by webmin they will be using that as PPID. &lt;BR /&gt;&lt;BR /&gt;# ps -ef | grep &lt;PID of="" web="" min=""&gt;&lt;BR /&gt;&lt;BR /&gt;will give all process which are started by it.&lt;BR /&gt;&lt;BR /&gt;--&lt;BR /&gt;Muthu&lt;/PID&gt;</description>
      <pubDate>Thu, 06 Apr 2006 04:01:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/identify-a-process/m-p/3766862#M785583</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2006-04-06T04:01:35Z</dc:date>
    </item>
    <item>
      <title>Re: Identify a process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/identify-a-process/m-p/3766863#M785584</link>
      <description>You can find which process is occupying more cpu resource as,&lt;BR /&gt;&lt;BR /&gt;UNIX95=1 ps -ef -o cpu= -o pcpu= -o comm= -o pid | sort -rnk 2&lt;BR /&gt;&lt;BR /&gt;or&lt;BR /&gt;&lt;BR /&gt;top&lt;BR /&gt;&lt;BR /&gt;will give that. &lt;BR /&gt;&lt;BR /&gt;Hope webmin is maintaining a log file. Try to trace it.&lt;BR /&gt;&lt;BR /&gt;--&lt;BR /&gt;Muthu</description>
      <pubDate>Thu, 06 Apr 2006 04:04:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/identify-a-process/m-p/3766863#M785584</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2006-04-06T04:04:13Z</dc:date>
    </item>
    <item>
      <title>Re: Identify a process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/identify-a-process/m-p/3766864#M785585</link>
      <description>Hello, &lt;BR /&gt;&lt;BR /&gt;You can esily find out by giving, &lt;BR /&gt;&lt;BR /&gt;# ps ef |grep -i perl &lt;BR /&gt;&lt;BR /&gt;Also, You can download and install HP's Webmin which is fully supported on HP-UX/.&lt;BR /&gt;&lt;BR /&gt;-Arun</description>
      <pubDate>Thu, 06 Apr 2006 04:40:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/identify-a-process/m-p/3766864#M785585</guid>
      <dc:creator>Arunvijai_4</dc:creator>
      <dc:date>2006-04-06T04:40:42Z</dc:date>
    </item>
    <item>
      <title>Re: Identify a process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/identify-a-process/m-p/3766865#M785586</link>
      <description>Hi Kalin, &lt;BR /&gt;&lt;BR /&gt;You can download &lt;A href="http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=HPUXWSARCHIVE" target="_blank"&gt;http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=HPUXWSARCHIVE&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;-Arun</description>
      <pubDate>Thu, 06 Apr 2006 04:42:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/identify-a-process/m-p/3766865#M785586</guid>
      <dc:creator>Arunvijai_4</dc:creator>
      <dc:date>2006-04-06T04:42:56Z</dc:date>
    </item>
    <item>
      <title>Re: Identify a process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/identify-a-process/m-p/3766866#M785587</link>
      <description>perl scripts will use cpu resource more. Check is there any patch available for webmin or install new webmin. Performance issues must be fixed in new releases. &lt;BR /&gt;&lt;BR /&gt;--&lt;BR /&gt;Muthu</description>
      <pubDate>Thu, 06 Apr 2006 04:46:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/identify-a-process/m-p/3766866#M785587</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2006-04-06T04:46:54Z</dc:date>
    </item>
    <item>
      <title>Re: Identify a process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/identify-a-process/m-p/3766867#M785588</link>
      <description>Hi Kalin, &lt;BR /&gt;&lt;BR /&gt;Latest version of Webmin supported by HP is HP-UX Webmin-based Admin 1.070.07. Not sure it is sync with Opensource webmin and it is a trimmed down version of Opensource webmin. &lt;BR /&gt;&lt;BR /&gt;You will only have two modules, one for Apache and other for Tomcat. &lt;BR /&gt;&lt;BR /&gt;You need to install other modules from web. &lt;BR /&gt;&lt;BR /&gt;-Arun</description>
      <pubDate>Thu, 06 Apr 2006 04:51:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/identify-a-process/m-p/3766867#M785588</guid>
      <dc:creator>Arunvijai_4</dc:creator>
      <dc:date>2006-04-06T04:51:27Z</dc:date>
    </item>
    <item>
      <title>Re: Identify a process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/identify-a-process/m-p/3766868#M785589</link>
      <description>I just installed the newest Webmin V. 1.270&lt;BR /&gt;Will watch what happens.</description>
      <pubDate>Thu, 06 Apr 2006 06:08:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/identify-a-process/m-p/3766868#M785589</guid>
      <dc:creator>Kalin Evtimov</dc:creator>
      <dc:date>2006-04-06T06:08:27Z</dc:date>
    </item>
  </channel>
</rss>

