I have a server running very slowly due to high CPU usage. I think this must be a configuration issue but I can't put my finger on why. The server is running Plesk and I've configured PHP to run as a Fast CGi application.
Server spec:
Quad-Core AMD 2.2GHz 4GB RAM Ubuntu 10.04 Apache 2.2.14 PHP 5.3.2 Websites:
1 x Drupal 7 2 x WordPress 3.x Apache config:
KeepAlive On Timeout 30 MaxKeepAliveRequests 0 KeepAliveTimeout 2 <IfModule mpm_prefork_module> StartServers 4 MinSpareServers 5 MaxSpareServers 10 MaxClients 20 MaxRequestsPerChild 5000 </IfModule> 
I have APC enabled plus the Drupal site has all caching turned on, including caching in views. I have another server running over 100 sites on CentOS and cpu usage is very low. Any ideas what could be causing this?
Heres a mod_status output screenshot

Also there is no output in the apache error.log apart from MaxClients being exceeded.
top CPU and Memory lines added 25th Apr 
free -h) , each php5-cgi process is consuming about 100 MB (which seems 3x on the high side) so try: a) increasing MaxClients according to available RAM b) unload unneeded modules c) if still high CPU, reduce TimeOut, take out KeepAliveapache2ctl -V? And what if you use 'apache module'?