Cloud falling with 200 simultaneous accesses

0

I have a cloud with the following configuration: Xeon E5420 8x 2.50Ghz, 5GB de ram SSD RAID 10 4x priority - 24 CPU Core e 6TB de banda , but when it reaches 150 to 200 simultaneous accesses it starts getting slow and sometimes it even drops the server, what could be done to improve it? I have another server with the same configuration I get to have peak of up to 1300 concurrent accesses and this never happened.

Note : Always have 60% memory free.

    
asked by anonymous 30.04.2014 / 17:17

1 answer

1

Try adding / changing this in your .htaccess file

<IfModule mpm_worker_module>
    ServerLimit          40
    StartServers          2
    MaxClients          1000
    MinSpareThreads      25
    MaxSpareThreads      75 
    ThreadsPerChild      25
    MaxRequestsPerChild   0
</IfModule>

Change MaxClients to the number you want.

You can be more here: link

    
30.04.2014 / 17:21