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:38 UTC

svn commit: r1602766 - /httpd/httpd/branches/2.4.x/docs/manual/mpm.xml

Author: rbowen
Date: Sun Jun 15 20:30:37 2014
New Revision: 1602766

URL: http://svn.apache.org/r1602766
Log:
Example of loading an MPM with LoadModule, and what error you get when
you do it wrong.

Modified:
    httpd/httpd/branches/2.4.x/docs/manual/mpm.xml

Modified: httpd/httpd/branches/2.4.x/docs/manual/mpm.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mpm.xml?rev=1602766&r1=1602765&r2=1602766&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/mpm.xml (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/mpm.xml Sun Jun 15 20:30:37 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.