よく判りませんが、Apache2の設定変更。
スワップが発生していたので、Apache2の設定を見直し。
sudo vi /etc/apache2/apache2.conf
<IfModule mpm_prefork_module>
StartServers 5
MinSpareServers 5
MaxSpareServers 10
MaxClients 50
MaxRequestsPerChild 150
</IfModule>
<IfModule mpm_worker_module>
StartServers 2
MaxClients 50
MinSpareThreads 25
MaxSpareThreads 75
ThreadsPerChild 25
MaxRequestsPerChild 150
</IfModule>
という風にしました。
これで少しは負荷が減るのでしょうか??
