You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@apache.org on 2014/06/15 22:30:19 UTC

svn commit: r1602764 - /httpd/httpd/trunk/docs/manual/mpm.xml

Author: rbowen
Date: Sun Jun 15 20:30:18 2014
New Revision: 1602764

URL: http://svn.apache.org/r1602764
Log:
Example of loading mpm with LoadModule, and what happens when you do it
wrong.

Modified:
    httpd/httpd/trunk/docs/manual/mpm.xml

Modified: httpd/httpd/trunk/docs/manual/mpm.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mpm.xml?rev=1602764&r1=1602763&r2=1602764&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mpm.xml (original)
+++ httpd/httpd/trunk/docs/manual/mpm.xml Sun Jun 15 20:30:18 2014
@@ -139,6 +139,17 @@ two features.</p>
     updating the <directive module="mod_so">LoadModule</directive> directive
     for the MPM instead of by rebuilding the server.</p>
 
+    <highlight language="config">
+    LoadModule mpm_prefork_module modules/mod_mpm_prefork.so
+    </highlight>
+
+    <p>Attempting to <directive module="mod_so">LoadModule</directive>
+    more than one MPM will result in a startup failure with the
+    following error.</p>
+
+    <example>AH00534: httpd: Configuration error: More than one MPM
+    loaded.</example>
+
     <p>This feature is enabled using the
     <code>--enable-mpms-shared</code> option of the <program>configure</program>
     script.