Sponsored Content
Full Discussion: AIX: two strange process
Operating Systems AIX AIX: two strange process Post 302927492 by Linusolaradm1 on Wednesday 3rd of December 2014 11:54:10 AM
Old 12-03-2014
AIX: two strange process

I check for top 10 cpu consumer

Code:
ps auxww |head -10
USER          PID %CPU %MEM   SZ  RSS    TTY STAT    STIME  TIME COMMAND
root       131076 23,6  0,0  448  448      - A    16:00:59 50:21 wait
root       983070 21,9  0,0  448  448      - A    16:00:59 46:43 wait

I try to kill them

Code:
sudo kill 131076
kill: 131076: 0509-015 Il processo specificato non esiste.

Another strange thing

Code:
ps -elf|grep wait

return 0

I don't understand from where those process came from..

---------- Post updated at 11:54 AM ---------- Previous update was at 11:50 AM ----------

Found solution

Wait process holding CPU

Moderator's Comments:
Mod Comment edit by bakunin: please use the tag "solved" instead of changing the title to mark solved threads. Thank you.

Last edited by bakunin; 12-12-2014 at 06:34 PM.. Reason: modified title
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Check process in AIX

Hi there, Tried using vmstat n iostat as well as sar. Can anyone tell me if there is anyway where i can check which the name of the process which is taking up alot of cpu resources? I also tried TOPAS. Thanks for the advise. Wee :) (2 Replies)
Discussion started by: lweegp
2 Replies

2. AIX

disk i/o per process on aix 5.2

hi, i am working on aix 5.2, i want to check disk i/o for any running process. please if anybody can help me. thanks Aqeel Anwar (1 Reply)
Discussion started by: system-admin
1 Replies

3. UNIX for Dummies Questions & Answers

cannot fork process on IBM - AIX

Hi, Currently, I'm getting the foll error on an IBM AIX /etc/profile: 0403-030 The fork function failed. Too many processes already exist. How can i check the current no. of processes which can run simultaneously on an IBM AIX machine for oracle user and how can i change ? Thanks Vin (1 Reply)
Discussion started by: win_vin
1 Replies

4. AIX

AIX: PID 0 Process

Hi All, I searched other threads and could not find any relevant post about this. I searched for process 0 in SUN OS and could find the sched/swapper process listed. root 0 0 0 Apr 25 ? 0:06 sched but i couldnt not find the swapper process (PID 0) in AIX. Is that... (4 Replies)
Discussion started by: quintet
4 Replies

5. UNIX for Advanced & Expert Users

How to trace an AIX Process?

Hello, I execute an application on my Unix AIX Server and that one crashes after reading some files. These files are very big (80 Mbytes), the application is a CVS Repository. I have found with a comparaison on a Solaris Server that there are system limitations on my AIX Server in the... (2 Replies)
Discussion started by: steiner
2 Replies

6. Cybersecurity

Strange Process FIST

Just run top on my server and noticed lots of processes called "fist" 28626 root 15 0 18176 12m 2420 S 2.7 0.2 0:00.08 fist 28631 root 15 0 18176 12m 2420 S 2.7 0.2 0:00.08 fist 28633 root 15 0 18172 12m 2420 S 2.7 0.2 0:00.08 fist 28640 root 15 0... (1 Reply)
Discussion started by: m50ell
1 Replies

7. Solaris

Strange slash in process

I have Solaris-9, where ndsd application is running. If i grep it, it should three slashed in front of path. Thought everything is working working, but it looks strange, why it is like this. root@trim_prt7:/# ps -ef | grep -i ndsd root 21505 21355 0 08:58:20 pts/23 0:00 grep -i ndsd ... (3 Replies)
Discussion started by: solaris_1977
3 Replies

8. Emergency UNIX and Linux Support

AIX Hangups when process runs

When a data load process is running, there seems to be hangups happening. By hangup, I mean the application screen exits, a blue screen appears with an AIX prompt and the word Hangup. It is not happening at the same point of the data file, because if that had happened, I would have considered it... (2 Replies)
Discussion started by: ggayathri
2 Replies

9. Shell Programming and Scripting

awk Strange behaviour in AIX

Can someone please explain the strange behaviour.. I was just trying a few things to learn awk.. in the below code when I start the braces in the same line, the output is as expected, when I start at next line, output is displayed twice. Please see the file, code I tried and output below. ... (2 Replies)
Discussion started by: Kulasekar
2 Replies

10. AIX

AIX lsvg strange LV STATE and MOUNT POINT

What does it mean when your LV STATE changes to closed/syncd? What does it mean when your mount point is #? I was not able to mount it or write data to it. So in this case since there was no data in /opt/cvt I used rmlv to get rid of it. Why did I have to manually edit /etc/filesystems to get rid... (1 Reply)
Discussion started by: cokedude
1 Replies
procsystime(1m) 						   USER COMMANDS						   procsystime(1m)

NAME
procsystime - analyse system call times. Uses DTrace. SYNOPSIS
procsystime [-acehoT] [ -p PID | -n name | command ] DESCRIPTION
procsystime prints details on system call times for processes, both the elapsed times and on-cpu times can be printed. The elapsed times are interesting, to help identify syscalls that take some time to complete (during which the process may have slept). CPU time helps us identify syscalls that are consuming CPU cycles to run. Since this uses DTrace, only users with root privileges can run this command. OPTIONS
-a print all data -c print syscall counts -e print elapsed times, ns -o print CPU times, ns -T print totals -p PID examine this PID -n name examine processes which have this name EXAMPLES
Print elapsed times for PID 1871, # procsystime -p 1871 Print elapsed times for processes called "tar", # procsystime -n tar Print CPU times for "tar" processes, # procsystime -on tar Print syscall counts for "tar" processes, # procsystime -cn tar Print elapsed and CPU times for "tar" processes, # procsystime -eon tar print all details for "bash" processes, # procsystime -aTn bash run and print details for "df -h", # procsystime df -h FIELDS
SYSCALL System call name TIME (ns) Total time, nanoseconds COUNT Number of occurrences DOCUMENTATION
See the DTraceToolkit for further documentation under the Docs directory. The DTraceToolkit docs may include full worked examples with ver- bose descriptions explaining the output. EXIT
procsystime will sample until Ctrl-C is hit. AUTHOR
Brendan Gregg [Sydney, Australia] SEE ALSO
dtruss(1M), dtrace(1M), truss(1) version 1.00 Sep 22, 2005 procsystime(1m)
All times are GMT -4. The time now is 05:16 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy