Reputation: 11
I have a java process seens like taking up all the cpu processing power. I thinking of killing it but how do i know what is the program that is actually causing such huge usage of solarsi cpu usage?
Upvotes: 1
Views: 808
Reputation: 1147
Although this question was asked sometime back, I'm posting this so anyone can refer in future.
You can use the top
command to investigate the issue. However, the thing with Solaris is, you have to turn off the Irix mode to get the real process information. While running top
tool, press I to toggle the Irix mode.
More information can find here -> How to investigate CPU utilization in Solaris
Upvotes: 0