3

So there is a VPS with openvz virtualization, with debian 6.0 32 bit The problem is appearing approx. 1 week ago. The automatic security monitoring system is shutting down the vps that i'm running due to cpu overload! I am linking the /etc/apache2/apache2.conf

If you could help somehow without access then thank's in advance! If you need more files then please ask and i will try to post them!

rsz
  • 143

1 Answers1

0

Change the config by limiting possible clients and threads:

ThreadLimit          40
MaxClients           40

If it will help - OK. If not - cut it more.

I can see in netstat output that a lot of connections are originated from one IP address. This might mean that your site is poorly constructed - for example lots of iframes - each one of them will generate a thread on your side. You might want to redesign the site. Also check how big is your site and if you got a lot of pictures in hight definition and so on... Think about free cloud cache services like cloudflare.com it might free your CPU a bit.

mnmnc
  • 4,257