home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 May / PCWorld_2003-05_cd.bin / Komunik / apache / apache_2.0.45-win32-x86-no_ssl.msi / Data.Cab / F232624_mpm.html.en < prev    next >
Extensible Markup Language  |  2003-03-30  |  7KB  |  114 lines

  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head><!--
  4.         XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
  5.               This file is generated from xml source: DO NOT EDIT
  6.         XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
  7.       -->
  8. <title>Multi-Processing Modules (MPMs) - Apache HTTP Server</title>
  9. <link href="./style/css/manual.css" rel="stylesheet" media="all" type="text/css" title="Main stylesheet" />
  10. <link href="./style/css/manual-loose-100pc.css" rel="alternate stylesheet" media="all" type="text/css" title="No Sidebar - Default font size" />
  11. <link href="./style/css/manual-print.css" rel="stylesheet" media="print" type="text/css" />
  12. <link href="./images/favicon.ico" rel="shortcut icon" /></head>
  13. <body id="manual-page"><div id="page-header">
  14. <p class="menu"><a href="./mod/">Modules</a> | <a href="./mod/directives.html">Directives</a> | <a href="./faq/">FAQ</a> | <a href="./glossary.html">Glossary</a> | <a href="./sitemap.html">Sitemap</a></p>
  15. <p class="apache">Apache HTTP Server Version 2.0</p>
  16. <img alt="" src="./images/feather.gif" /></div>
  17. <div class="up"><a href="./"><img title="<-" alt="<-" src="./images/left.gif" /></a></div>
  18. <div id="path">
  19. <a href="http://www.apache.org/">Apache</a> > <a href="http://httpd.apache.org/">HTTP Server</a> > <a href="http://httpd.apache.org/docs-project/">Documentation</a> > <a href="./">Version 2.0</a></div><div id="page-content"><div id="preamble"><h1>Multi-Processing Modules (MPMs)</h1>
  20. <p>This document describes what a Multi-Processing Module is and
  21. how they are using by the Apache HTTP Server.</p>
  22. </div>
  23. <div id="quickview"><ul id="toc"><li><img alt="" src="./images/down.gif" /> <a href="#introduction">Introduction</a></li>
  24. <li><img alt="" src="./images/down.gif" /> <a href="#choosing">Choosing an MPM</a></li>
  25. <li><img alt="" src="./images/down.gif" /> <a href="#defaults">MPM Defaults</a></li>
  26. </ul></div>
  27. <div class="top"><a href="#page-header"><img alt="top" src="./images/up.gif" /></a></div>
  28. <div class="section">
  29. <h2><a name="introduction" id="introduction">Introduction</a></h2>
  30.  
  31.     <p>The Apache HTTP Server is designed to be a powerful and
  32.     flexible web server that can work on a very wide variety of
  33.     platforms in a range of different environments. Different
  34.     platforms and different environments often require different
  35.     features, or may have different ways of implementing the same
  36.     feature most efficiently. Apache has always accommodated a wide
  37.     variety of environments through its modular design. This design
  38.     allows the webmaster to choose which features will be included
  39.     in the server by selecting which modules to load either at
  40.     compile-time or at run-time.</p>
  41.  
  42.     <p>Apache 2.0 extends this modular design to the most basic
  43.     functions of a web server. The server ships with a selection of
  44.     Multi-Processing Modules (MPMs) which are responsible for
  45.     binding to network ports on the machine, accepting requests,
  46.     and dispatching children to handle the requests.</p>
  47.  
  48.     <p>Extending the modular design to this level of the server
  49.     allows two important benefits:</p>
  50.  
  51.     <ul>
  52.       <li>Apache can more cleanly and efficiently support a wide
  53.       variety of operating systems. In particular, the Windows
  54.       version of Apache is now much more efficient, since
  55.       <code class="module"><a href="./mod/mpm_winnt.html">mpm_winnt</a></code> can use native
  56.       networking features in place of the POSIX layer used in
  57.       Apache 1.3. This benefit also extends to other operating
  58.       systems that implement specialized MPMs.</li>
  59.  
  60.       <li>The server can be better customized for the needs of the
  61.       particular site. For example, sites that need a great deal of
  62.       scalability can choose to use a threaded MPM like 
  63.       <code class="module"><a href="./mod/worker.html">worker</a></code>, while sites requiring
  64.       stability or compatibility with older software can use a
  65.       <code class="module"><a href="./mod/prefork.html">prefork</a></code>. In addition,
  66.       special features like serving different hosts under different
  67.       userids (<code class="module"><a href="./mod/perchild.html">perchild</a></code>) can be
  68.       provided.</li>
  69.     </ul>
  70.  
  71.     <p>At the user level, MPMs appear much like other Apache
  72.     modules. The main difference is that one and only one MPM must
  73.     be loaded into the server at any time. The list of available
  74.     MPMs appears on the <a href="mod/">module index page</a>.</p>
  75.  
  76. </div><div class="top"><a href="#page-header"><img alt="top" src="./images/up.gif" /></a></div>
  77. <div class="section">
  78. <h2><a name="choosing" id="choosing">Choosing an MPM</a></h2>
  79.  
  80.     <p>MPMs must be chosen during configuration, and compiled into
  81.     the server. Compilers are capable of optimizing a lot of
  82.     functions if threads are used, but only if they know that
  83.     threads are being used. Because some MPMs use threads on Unix
  84.     and others don't, Apache will always perform better if the MPM
  85.     is chosen at configuration time and built into Apache.</p>
  86.  
  87.     <p>To actually choose the desired MPM, use the argument
  88.     --with-mpm= <em>NAME</em> with the ./configure script.
  89.     <em>NAME</em> is the name of the desired MPM.</p>
  90.  
  91.     <p>Once the server has been compiled, it is possible to
  92.     determine which MPM was chosen by using <code>./httpd
  93.     -l</code>. This command will list every module that is compiled
  94.     into the server, including the MPM.</p>
  95. </div><div class="top"><a href="#page-header"><img alt="top" src="./images/up.gif" /></a></div>
  96. <div class="section">
  97. <h2><a name="defaults" id="defaults">MPM Defaults</a></h2>
  98.  
  99. <p>The following table lists the default MPMs for various operating
  100. systems.  This will be the MPM selected if you do not make another
  101. choice at compile-time.</p>
  102.  
  103. <table>
  104. <tr><td>BeOS</td><td><code class="module"><a href="./mod/beos.html">beos</a></code></td></tr>
  105. <tr><td>Netware</td><td><code class="module"><a href="./mod/mpm_netware.html">mpm_netware</a></code></td></tr>
  106. <tr><td>OS/2</td><td><code class="module"><a href="./mod/mpmt_os2.html">mpmt_os2</a></code></td></tr>
  107. <tr><td>Unix</td><td><code class="module"><a href="./mod/prefork.html">prefork</a></code></td></tr>
  108. <tr><td>Windows</td><td><code class="module"><a href="./mod/mpm_winnt.html">mpm_winnt</a></code></td></tr>
  109. </table>
  110. </div></div>
  111. <div id="footer">
  112. <p class="apache">Maintained by the <a href="http://httpd.apache.org/docs-project/">Apache HTTP Server Documentation Project</a></p>
  113. <p class="menu"><a href="./mod/">Modules</a> | <a href="./mod/directives.html">Directives</a> | <a href="./faq/">FAQ</a> | <a href="./glossary.html">Glossary</a> | <a href="./sitemap.html">Sitemap</a></p></div>
  114. </body></html>