Httpd worker MPM: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
 
(10 intermediate revisions by the same user not shown)
Line 7: Line 7:
* [[Httpd_Multi-Processing_Module_Concepts#worker|Multi-Processing Module Concepts]]
* [[Httpd_Multi-Processing_Module_Concepts#worker|Multi-Processing Module Concepts]]


=Concepts=
=Subjects=


<blockquote style="background-color: #f9f9f9; border: solid thin lightgrey;">
* [[httpd worker MPM Concepts|Concepts]]
:[[httpd woker MPM Concepts|worker MPM Concepts]]
* [[httpd worker MPM Compilation|Compilation]]
</blockquote>
* [[httpd worker MPM Configuration|Configuration]]
 
=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.

Latest revision as of 20:29, 5 January 2017