dfdf
dfdf

Reputation: 11

Solaris process taking up large CPU

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

Answers (2)

DinushaNT
DinushaNT

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

Jim Lewis
Jim Lewis

Reputation: 45075

Try prstat -- it should show you how much CPU each process on your system is using.

Upvotes: 3

Related Questions