Which directives in httpd.conf need to be adjusted?

A web server is expected to handle approximately 200 simultaneous requests during normal use with an occasional spike in activity and is performing slowly. Which directives in httpd.conf need to be adjusted?

A web server is expected to handle approximately 200 simultaneous requests during normal use with an occasional spike in activity and is performing slowly. Which directives in httpd.conf need to be adjusted?

A.
MinSpareServers & MaxSpareServers.

B.
MinSpareServers, MaxSpareServers, StartServers & MaxClients.

C.
MinServers, MaxServers & MaxClients.

D.
MinSpareServers, MaxSpareServers, StartServers, MaxClients & KeepAlive.



Leave a Reply 1

Your email address will not be published. Required fields are marked *


Marcus

Marcus

I think “D” is the answer

When a client uses a Keep-Alive connection it will be counted as a single “request” for the MaxRequestsPerChild directive, regardless of how many requests are sent using the connection.