View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0000558 | Apache 2.x | Bug | public | 2012-12-23 05:25 | 2020-08-24 03:13 |
Reporter | LewisR | Assigned To | psmedley | ||
Priority | low | Severity | minor | Reproducibility | always |
Status | closed | Resolution | fixed | ||
Summary | 0000558: Corrections to default httpd-mpm.conf | ||||
Description | Presently, a couple minor issues arise with the included conf/extra/httpd-mpm.conf. The LockFile directive is apparently not supported on OS/2. The included conf refers to: <IfModule !mpm_winnt_module> <IfModule !mpm_netware_module> LockFile "logs/accept.lock" </IfModule> </IfModule> Unfortunately, without modification, this throws an error upon daemon startup, and an immediate exit. In addition, in the OS/2 MPM section, there is no mention of the default ThreadStackSize, which I believe is 65536 (someone please confirm). | ||||
Additional Information | Suggest the following changes to conf/extra/httpd-mpm.conf: <IfModule !mpm_winnt_module> <IfModule !mpm_netware_module> <IfModule !mpm_mpmt_os2_module> LockFile logs/accept.lock </IfModule> </IfModule> </IfModule> and in the OS/2 MPM section: # OS/2 MPM # ThreadStackSize: Stack size allocated for each worker thread # StartServers: Number of server processes to maintain # MinSpareThreads: Minimum number of idle threads per process, # to handle request spikes # MaxSpareThreads: Maximum number of idle threads per process # MaxRequestsPerChild: Maximum number of connections per server process # <IfModule mpm_mpmt_os2_module> ThreadStackSize 65536 StartServers 2 MinSpareThreads 5 MaxSpareThreads 10 MaxRequestsPerChild 0 </IfModule> | ||||
Tags | No tags attached. | ||||
Date Modified | Username | Field | Change |
---|---|---|---|
2012-12-23 05:25 | LewisR | New Issue | |
2012-12-23 23:14 | psmedley | Note Added: 0002390 | |
2012-12-23 23:14 | psmedley | Status | new => resolved |
2012-12-23 23:14 | psmedley | Resolution | open => fixed |
2012-12-23 23:14 | psmedley | Assigned To | => psmedley |
2020-08-24 03:13 | psmedley | Status | resolved => closed |