Link to home
Start Free TrialLog in
Avatar of Arbuckle2
Arbuckle2

asked on

I'm creating an Apache media server and need some help tuning the httpd.conf

I'm setting up a media server running Apache on an Large Amazon EC2 instance. What should the Server-Pool Size parameters be on the server to maximize performance. I am receiving between 100 - 300 requests per second and want to make sure these parameters are setup correctly.

Any other performance tweaks in the httpd.conf would be much appreciated.

THANKS IN ADVANCE!
<IfModule prefork.c>
StartServers       8
MinSpareServers    5
MaxSpareServers   20
ServerLimit      1024
MaxClients       1024
MaxRequestsPerChild  4000
</IfModule>

<IfModule worker.c>
StartServers         2
MaxClients         150
MinSpareThreads     25
MaxSpareThreads     75
ThreadsPerChild     25
MaxRequestsPerChild  0
</IfModule>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Insoftservice inso
Insoftservice inso
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial