I was trying to list the MPM prefork default configuration values in apache web server. In ubuntu, apache web server, I could access the values inside /etc/apache2/mods-available/mpm_prefork.conf
file. But in CentOS, I couldn't find the similar file anywhere. By following this link I found out details can be found in the file /etc/httpd/conf.modules.d/00-mpm.conf
but 'there is nothing except loading the module'. Is there any way for me to access/list the default values loaded for the MPM configuration ?
Asked
Active
Viewed 749 times
0
1 Answers
1
Try grep -r MinSpareServers /etc/httpd
, and so on. If you don't find the directives there, then they're not set in the configuration, so they're at their default values.

Andrew Schulman
- 8,811
- 21
- 32
- 47
-
Do you know any reason why both behaves differently? Ex. in ubuntu values are loaded in the mpm_prefork.conf file, while its left to default in CentOS systems ? – know_a_guy_hu_knows_anothr_guy Mar 23 '21 at 15:31
-
No particular reason. Different distros package things differently. – Andrew Schulman Mar 23 '21 at 15:48