Problem with VPS

Status
Not open for further replies.

Sushant

Active Member
265
2009
38
0
Hi I have VPS when i m downloading Multiple files at one time then it is going down after completion of four downloads....:-( for making it up i need to restart it. I have centos Operating System in it

why is this happening do any one have solution for it?

Thanks and Regards
 
4 comments
increase your apache max_clients and start_server values
Ohk i have made following values and restarted apache


Code:
<IfModule prefork.c>
StartServers       100
MinSpareServers    1
MaxSpareServers    5
ServerLimit       10
MaxClients        1000
MaxRequestsPerChild  4000
</IfModule>
Code:
<IfModule worker.c>
StartServers       100
MaxClients        1000
MinSpareThreads    1
MaxSpareThreads    4
ThreadsPerChild     25
MaxRequestsPerChild  0
</IfModule>
But problem still presists
 
may I know what control panel are using and what is the result of this command
cat /etc/httpd/conf.d/swtune.conf
 
Status
Not open for further replies.
Back
Top