Process ids consuming huge resources ?


 
Thread Tools Search this Thread
Operating Systems AIX Process ids consuming huge resources ?
# 1  
Old 05-25-2010
Process ids consuming huge resources ?

Hi All

what is the command to check process ids , which are running from long time and which are consuming more cpu?

Also how to check, what a particular PID is running what

For Ex:

i have a pid :3223722 which is running since from long time,
if i want to check what is this process about, the details of this process
and what it is running ,

when i type
  1. ps -ef | grep 3223722

ps3adm 1458336 2187476 0 05:24:31 pts/17 0:00 grep 3223722
what is the command to check process ids , which are running from long time ?



My OS Being
AIX &

HP Unix
# 2  
Old 05-25-2010
[QUOTE=sidharthmellam;302424325]
what is the command to check process ids , which are running from long time and which are consuming more cpu?[quote]

Use "ps" and consult its (rather exhaustive) man page by issuing "man ps". For instance, use:

Code:
ps -eo "%U %p %P | %C %z %t | %c %a"

Additionally there are a lot of other tools displaying basically the same info as the above command but in somewhat "cooked" form: "topas" (IBMs own tool), "nmon" (freeware package), "monitor" (freeware) and probably some others.


Quote:
Originally Posted by sidharthmellam
i have a pid :3223722 which is running since from long time,
Code:
ps -ef | grep 3223722
ps3adm 1458336 2187476   0 05:24:31 pts/17  0:00 grep 3223722

This suggests, that there is no such process, so you can't see, which resources it is using. Of course "grep" finds itself running in the process list when it runs and so reports one hit. To filter that out you could use:

Code:
ps -<some options> | grep -v grep | grep <PID>

If this command doesn't turn up with any output the PID is simply not used.

I hope this helps.

bakunin
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Top 5 cpu and Mem consuming process and files and suggestion for health check

I am middle of writing health check scripts, can you pls share commands on how I can get cpu and Mem of top consuming process info at the moment? Also can u suggest ideas on what all I can look for as a part do health check on red hat Linux server? I searched on site before posting, but... (2 Replies)
Discussion started by: Varja
2 Replies

2. Shell Programming and Scripting

Search process ids

Hi, I have four tomcat instances named PNK, PNK1, PNK2, PNK3. All are running on the same server. To kill tomcat instance I usually do below for PNK1,PNK2,PNK3 kill -9 `ps -ef|grep tomcat|grep PNK1|grep -v grep|awk '{print $2}'` But the above command does not work for PNK. Can some... (7 Replies)
Discussion started by: lpprasad321
7 Replies

3. Shell Programming and Scripting

ps returning more process ids

Please help me with this question I have a tantan.sh under /home/mydir which is a caller to another script "tantan.sh" under /home/anotherdir ----------------------------------------------------------- /home/mydir/tantan.sh ------------------------------------------------------------... (6 Replies)
Discussion started by: guruincredible
6 Replies

4. AIX

Which process was consuming most memory in the Past?

Hello There are options / commands to check which process is consuming maximum memory However is there any command/mechanism which will tell us which process was consuming maximum memory in specific time interval in the past? I heard nmon report can help in this regard. is there any... (5 Replies)
Discussion started by: Chetanz
5 Replies

5. UNIX for Dummies Questions & Answers

Scripting - process and user ids...Help please

Hello all: Working on a job I was asked get a simple script to perform the following task and would like to ask for some help. I'm looking forward to learning more and diving deeper into the World of Open Source servers. I need a script for a Unix server, using as few lines as possible, that... (4 Replies)
Discussion started by: moahten
4 Replies

6. Solaris

Help to trace process consuming more space

Hi all, We have a server having much processes running. It is very difficuilt to trace the exact consuming more memory. Howerver, it shows CPU usage in sequence but how memory? Tried working with TOP command. Please let me know if something not clear. Thanks, Deepak (5 Replies)
Discussion started by: naw_deepak
5 Replies

7. AIX

Command to find TOP 5 Memory consuming process

HI All, Can anyone send me a command to find TOP 5 Memory consuming process. It would be lelpful if I get output something like below processname - pid - memory(in MB) - command I tried few commands from the internet but the result only give the real memory usage or pagging, I want total... (4 Replies)
Discussion started by: bce_groups
4 Replies

8. AIX

Process consuming most memory

How can i find the processes that is consuming most memory? I tried TOPAS and SVMON and this didn't gave me the desired result. (1 Reply)
Discussion started by: shabu
1 Replies

9. UNIX for Dummies Questions & Answers

How ti kill a process which is consuming so much time

There is a process which is consuming too much time.. how to find that process and kill it. (3 Replies)
Discussion started by: shreenivas
3 Replies

10. Programming

List of Thread IDs of a process

Hello, Can some one tell how to read the thread IDs of the current process in Sun Solaris. Any help will be appreciated. regards, Murali (0 Replies)
Discussion started by: hmurali
0 Replies
Login or Register to Ask a Question