questil
asked on
AIX Disk performance
I have AIX machine that started working very slow, running topas show that one of the disks is almost always 100% busy. How can I find out which processes causing this?
Thanks,
Tal
Thanks,
Tal
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
Yes, woolmilkporc, the disk contain paging space, but we had to restart the system from other reasons...
Thanks!
Thanks!
#ps aux | head -1 ; ps aux | sort -rn +2 | head -10;topas -P
Displaying top 10 memory-consuming processes:
#ps aux | head -1; ps aux | sort -rn +3 | head
Displaying the process in order of real memory use
#ps vx | head -1; ps vx | grep -v PID | sort -rn +6 | head -10
Displaying the process in order of I/O
#ps vx | head -1; ps vx | grep -v PID | sort -rn +4 | head -10