Adjust the MaxRequestWorkers
settings for Apache. The general formula for making the necessary calculation is the following:
# MaxRequestWorkers = (Total RAM – Memory used for Linux, DB, etc.) / average Apache process size
- MPM Event: The default ServerLimit value is 16. To increase it, you must also raise
MaxRequestWorkers
using the following formula: ServerLimit value x 25 =MaxRequestWorkers
value. For example, ifServerLimit
is set to 20, thenMaxRequestWorkers
will be 20 x 25 = 500.