<?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: process table checking. Who/What/When in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/process-table-checking-who-what-when/m-p/3189341#M164384</link>
    <description>Hi&lt;BR /&gt;&lt;BR /&gt;Unix95 info:-&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://ou800doc.caldera.com/DIFFS/UNIX95_Conformance.html" target="_blank"&gt;http://ou800doc.caldera.com/DIFFS/UNIX95_Conformance.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Paula</description>
    <pubDate>Wed, 11 Feb 2004 14:05:08 GMT</pubDate>
    <dc:creator>Paula J Frazer-Campbell</dc:creator>
    <dc:date>2004-02-11T14:05:08Z</dc:date>
    <item>
      <title>process table checking. Who/What/When</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process-table-checking-who-what-when/m-p/3189336#M164379</link>
      <description>Would anyone out there happen to have a&lt;BR /&gt;script or would know how to capture particular&lt;BR /&gt;user account processes and log them.&lt;BR /&gt;&lt;BR /&gt;ps -ef gives you the current snapshot of what&lt;BR /&gt;is running but how would you capture particular&lt;BR /&gt;process in real time to a log file without&lt;BR /&gt;have dups entires minus the ones that you know&lt;BR /&gt;you don't want logged.&lt;BR /&gt;&lt;BR /&gt;Doing a:&lt;BR /&gt;&lt;BR /&gt;ps -ef|grep -v &lt;DON&gt;|grep -i &lt;WHAT is="" wanted=""&gt; &amp;gt;&amp;gt;pslog&lt;BR /&gt;&lt;BR /&gt;doesn't give you realtime uniq data.&lt;BR /&gt;&lt;BR /&gt;acctcom does not have the info needed either.&lt;/WHAT&gt;&lt;/DON&gt;</description>
      <pubDate>Wed, 11 Feb 2004 13:02:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process-table-checking-who-what-when/m-p/3189336#M164379</guid>
      <dc:creator>jerry1</dc:creator>
      <dc:date>2004-02-11T13:02:18Z</dc:date>
    </item>
    <item>
      <title>Re: process table checking. Who/What/When</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process-table-checking-who-what-when/m-p/3189337#M164380</link>
      <description>ps -lxu "user_name"&lt;BR /&gt;&lt;BR /&gt;-l long listing&lt;BR /&gt;-x extended command line&lt;BR /&gt;-u user name&lt;BR /&gt;&lt;BR /&gt;Check&lt;BR /&gt;ps -xu "user_name"&lt;BR /&gt;ps -lu "user_name"&lt;BR /&gt;&lt;BR /&gt;Hope this helps.</description>
      <pubDate>Wed, 11 Feb 2004 13:05:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process-table-checking-who-what-when/m-p/3189337#M164380</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2004-02-11T13:05:30Z</dc:date>
    </item>
    <item>
      <title>Re: process table checking. Who/What/When</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process-table-checking-who-what-when/m-p/3189338#M164381</link>
      <description>You can also do as follows.&lt;BR /&gt;export UNIX95=1&lt;BR /&gt;&lt;BR /&gt;UNIX95= ps -u "user_name" -o "uid,args,stime"&lt;BR /&gt;&lt;BR /&gt;Will give you uid of user, command being run and start time. When process start time is more than 24 hrs, it will only shoe start date.&lt;BR /&gt;&lt;BR /&gt;You can provide lot of flags with -o options. Check man page of ps for details.</description>
      <pubDate>Wed, 11 Feb 2004 13:09:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process-table-checking-who-what-when/m-p/3189338#M164381</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2004-02-11T13:09:47Z</dc:date>
    </item>
    <item>
      <title>Re: process table checking. Who/What/When</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process-table-checking-who-what-when/m-p/3189339#M164382</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;If you want to capture a particular user account processes, then I would use XPG4 with -u option.&lt;BR /&gt;&lt;BR /&gt;UNIX95= ps -fu user -o "vsz args"&lt;BR /&gt;&lt;BR /&gt;to print the argument and the vsz corresponding to the processes owned by the user 'user'.&lt;BR /&gt;&lt;BR /&gt;Look at ps man page for more options.&lt;BR /&gt;&lt;BR /&gt;-Sri</description>
      <pubDate>Wed, 11 Feb 2004 13:13:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process-table-checking-who-what-when/m-p/3189339#M164382</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2004-02-11T13:13:48Z</dc:date>
    </item>
    <item>
      <title>Re: process table checking. Who/What/When</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process-table-checking-who-what-when/m-p/3189340#M164383</link>
      <description>Could someone explain what UNIX95 is?&lt;BR /&gt;I keep seeing this mentioned in various&lt;BR /&gt;email messages but never found a reference in&lt;BR /&gt;the man pages.&lt;BR /&gt;&lt;BR /&gt;Sri, what is XPG4?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 11 Feb 2004 13:42:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process-table-checking-who-what-when/m-p/3189340#M164383</guid>
      <dc:creator>jerry1</dc:creator>
      <dc:date>2004-02-11T13:42:54Z</dc:date>
    </item>
    <item>
      <title>Re: process table checking. Who/What/When</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process-table-checking-who-what-when/m-p/3189341#M164384</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;Unix95 info:-&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://ou800doc.caldera.com/DIFFS/UNIX95_Conformance.html" target="_blank"&gt;http://ou800doc.caldera.com/DIFFS/UNIX95_Conformance.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Paula</description>
      <pubDate>Wed, 11 Feb 2004 14:05:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process-table-checking-who-what-when/m-p/3189341#M164384</guid>
      <dc:creator>Paula J Frazer-Campbell</dc:creator>
      <dc:date>2004-02-11T14:05:08Z</dc:date>
    </item>
    <item>
      <title>Re: process table checking. Who/What/When</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process-table-checking-who-what-when/m-p/3189342#M164385</link>
      <description>Jerry&lt;BR /&gt;&lt;BR /&gt;And Here:-&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=4177" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=4177&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Paula</description>
      <pubDate>Wed, 11 Feb 2004 14:06:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process-table-checking-who-what-when/m-p/3189342#M164385</guid>
      <dc:creator>Paula J Frazer-Campbell</dc:creator>
      <dc:date>2004-02-11T14:06:29Z</dc:date>
    </item>
    <item>
      <title>Re: process table checking. Who/What/When</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process-table-checking-who-what-when/m-p/3189343#M164386</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;perhaps you can use some HP tools like PRM, glance or Measureware to look at your users consumption...</description>
      <pubDate>Thu, 12 Feb 2004 04:28:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process-table-checking-who-what-when/m-p/3189343#M164386</guid>
      <dc:creator>florence mathon lermusi</dc:creator>
      <dc:date>2004-02-12T04:28:52Z</dc:date>
    </item>
    <item>
      <title>Re: process table checking. Who/What/When</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process-table-checking-who-what-when/m-p/3189344#M164387</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;Something like&lt;BR /&gt;&lt;BR /&gt;echo $_&lt;BR /&gt;user=$1&lt;BR /&gt;echo "  $(UNIX95= ps -e -o pcpu -o ruser -o sz -o vsz -opid -oppid -otty -o args&lt;BR /&gt;|head -n1)"&lt;BR /&gt;UNIX95= ps -e -o pcpu -o ruser -o sz -o vsz -opid -oppid -otty -o args|grep -v %CPU| sort -nr|tail -n +2|head -n 20|grep " "$user&lt;BR /&gt;&lt;BR /&gt;If you want to log more then use top with the undocumented -f logfile option&lt;BR /&gt;&lt;BR /&gt;           Steve Steel</description>
      <pubDate>Thu, 12 Feb 2004 04:51:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process-table-checking-who-what-when/m-p/3189344#M164387</guid>
      <dc:creator>Steve Steel</dc:creator>
      <dc:date>2004-02-12T04:51:31Z</dc:date>
    </item>
    <item>
      <title>Re: process table checking. Who/What/When</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/process-table-checking-who-what-when/m-p/3189345#M164388</link>
      <description>It's my fault. I need to start explaining&lt;BR /&gt;better the requirements of what is needed.&lt;BR /&gt;&lt;BR /&gt;Lets say you want to monitor the oracle id&lt;BR /&gt;to see what is being run as oracle other&lt;BR /&gt;than the current oracle processes running.&lt;BR /&gt;The current running processes are in your&lt;BR /&gt;exclude list so you don't have to worry about&lt;BR /&gt;them. It's any other oracle processes that&lt;BR /&gt;may pop up that you want to question.&lt;BR /&gt;So, you want to somehow capture these processes, even if they only run for a few seconds and log them to a file that you can&lt;BR /&gt;review from time to time. Basically the tty,&lt;BR /&gt;the time executed and the command is all that&lt;BR /&gt;would be needed. Since we already know it is&lt;BR /&gt;oracle user.&lt;BR /&gt;&lt;BR /&gt;Steve, I tried the undocumented top -l option. No go. Unless you are referring to the good downloaded version, not the HP one.&lt;BR /&gt;&lt;BR /&gt;Mathon, we have glance and measureware but&lt;BR /&gt;unless I don't understand how to capture&lt;BR /&gt;what oracle is running at any one time with&lt;BR /&gt;these tools. I can't use it. &lt;BR /&gt;&lt;BR /&gt;What is PRM?&lt;BR /&gt;&lt;BR /&gt;Is there a /proc directory like on Sun somewhere on HP?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 12 Feb 2004 11:00:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/process-table-checking-who-what-when/m-p/3189345#M164388</guid>
      <dc:creator>jerry1</dc:creator>
      <dc:date>2004-02-12T11:00:32Z</dc:date>
    </item>
  </channel>
</rss>

