Httpd worker MPM: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=Internal= * Multi-Processing Module Concepts") |
No edit summary |
||
Line 2: | Line 2: | ||
* [[Httpd_Multi-Processing_Module_Concepts#worker|Multi-Processing Module Concepts]] | * [[Httpd_Multi-Processing_Module_Concepts#worker|Multi-Processing Module Concepts]] | ||
=Compilation= | |||
<pre> | |||
./configure ... --with-mpm=worker ... | |||
</pre> | |||
To test if the worker MPM has been correctly compiled into binary, use: | |||
<pre> | |||
httpd -l | |||
</pre> | |||
You should see: | |||
<pre> | |||
[webr@rangiroa ~]$ httpd -l | |||
Compiled in modules: | |||
core.c | |||
... | |||
worker.c | |||
http_core.c | |||
... | |||
</pre> | |||
Also you can use: | |||
<pre> | |||
httpd -V | |||
</pre> | |||
should report the binary in worker mode. |
Revision as of 23:16, 1 January 2017
Internal
Compilation
./configure ... --with-mpm=worker ...
To test if the worker MPM has been correctly compiled into binary, use:
httpd -l
You should see:
[webr@rangiroa ~]$ httpd -l Compiled in modules: core.c ... worker.c http_core.c ...
Also you can use:
httpd -V
should report the binary in worker mode.