Link to home
Start Free TrialLog in
Avatar of questil
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
ASKER CERTIFIED SOLUTION
Avatar of woolmilkporc
woolmilkporc
Flag of Germany image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of madunix
madunix

Displaying top CPU_consuming processes:
#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

SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of questil

ASKER

Yes, woolmilkporc, the disk contain paging space, but we had to restart the system from other reasons...

Thanks!