1

I have a CentOS "development / testing" server that runs extremely slowly. It's running Apache and Mysql using PHP. Top reports that 98% of the CPU utilization is frequently spent on "st" - Steal Time. What could cause a server to spend so much CPU on steal time, and how can I diagnose the problem? I didn't notice the problem until after I granted a third party developer root access (for all I know it has a root kit running, though unlikely).

JMC
  • 506
  • 6
  • 23
  • Have you ruled out the basic scenario found in `man top`? The one about virtual machines & the hypervisor. – phemmer Mar 30 '12 at 21:58
  • @Patrick I didn't find the info in man top you're talking about, but I wouldn't rule a hypervisor issue out. I'm pushing the processor to it's limit constantly, so there might be something in the core os throttling my environment. – JMC Mar 31 '12 at 02:04
  • Steal time is defined as "The amount of CPU 'stolen' from this virtual machine by the hypervisor for other tasks (such as running another virtual machine)." – phemmer Mar 31 '12 at 05:26

1 Answers1

4

The "steal time" is related to how much time your VPS is waiting for the underlying hardware. You might want to bug your hosting provider to check if they can see anything going on with that particular host.

cjc
  • 24,916
  • 3
  • 51
  • 70