home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Servidores / apache_2.2.8-win32-x86-no_ssl.msi / Data1.cab / _899A4687C2779AC74D06D7EFB5B6544E < prev    next >
Extensible Markup Language  |  2007-09-01  |  8KB  |  127 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.2</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/">Documentation</a> > <a href="./">Version 2.2</a></div><div id="page-content"><div id="preamble"><h1>Multi-Processing Modules (MPMs)</h1>
  20. <div class="toplang">
  21. <p><span>Available Languages: </span><a href="./de/mpm.html" hreflang="de" rel="alternate" title="Deutsch"> de </a> |
  22. <a href="./en/mpm.html" title="English"> en </a> |
  23. <a href="./es/mpm.html" hreflang="es" rel="alternate" title="Espa±ol"> es </a> |
  24. <a href="./fr/mpm.html" hreflang="fr" rel="alternate" title="Franτais"> fr </a> |
  25. <a href="./ja/mpm.html" hreflang="ja" rel="alternate" title="Japanese"> ja </a> |
  26. <a href="./ko/mpm.html" hreflang="ko" rel="alternate" title="Korean"> ko </a></p>
  27. </div>
  28.  
  29. <p>This document describes what a Multi-Processing Module is and
  30. how they are used by the Apache HTTP Server.</p>
  31. </div>
  32. <div id="quickview"><ul id="toc"><li><img alt="" src="./images/down.gif" /> <a href="#introduction">Introduction</a></li>
  33. <li><img alt="" src="./images/down.gif" /> <a href="#choosing">Choosing an MPM</a></li>
  34. <li><img alt="" src="./images/down.gif" /> <a href="#defaults">MPM Defaults</a></li>
  35. </ul></div>
  36. <div class="top"><a href="#page-header"><img alt="top" src="./images/up.gif" /></a></div>
  37. <div class="section">
  38. <h2><a name="introduction" id="introduction">Introduction</a></h2>
  39.  
  40.     <p>The Apache HTTP Server is designed to be a powerful and
  41.     flexible web server that can work on a very wide variety of
  42.     platforms in a range of different environments. Different
  43.     platforms and different environments often require different
  44.     features, or may have different ways of implementing the same
  45.     feature most efficiently. Apache has always accommodated a wide
  46.     variety of environments through its modular design. This design
  47.     allows the webmaster to choose which features will be included
  48.     in the server by selecting which modules to load either at
  49.     compile-time or at run-time.</p>
  50.  
  51.     <p>Apache 2.0 extends this modular design to the most basic
  52.     functions of a web server. The server ships with a selection of
  53.     Multi-Processing Modules (MPMs) which are responsible for
  54.     binding to network ports on the machine, accepting requests,
  55.     and dispatching children to handle the requests.</p>
  56.  
  57.     <p>Extending the modular design to this level of the server
  58.     allows two important benefits:</p>
  59.  
  60.     <ul>
  61.       <li>Apache can more cleanly and efficiently support a wide
  62.       variety of operating systems. In particular, the Windows
  63.       version of Apache is now much more efficient, since
  64.       <code class="module"><a href="./mod/mpm_winnt.html">mpm_winnt</a></code> can use native
  65.       networking features in place of the POSIX layer used in
  66.       Apache 1.3. This benefit also extends to other operating
  67.       systems that implement specialized MPMs.</li>
  68.  
  69.       <li>The server can be better customized for the needs of the
  70.       particular site. For example, sites that need a great deal of
  71.       scalability can choose to use a threaded MPM like 
  72.       <code class="module"><a href="./mod/worker.html">worker</a></code> or <code class="module"><a href="./mod/event.html">event</a></code>, while sites requiring
  73.       stability or compatibility with older software can use a
  74.       <code class="module"><a href="./mod/prefork.html">prefork</a></code>.</li>
  75.     </ul>
  76.  
  77.     <p>At the user level, MPMs appear much like other Apache
  78.     modules. The main difference is that one and only one MPM must
  79.     be loaded into the server at any time. The list of available
  80.     MPMs appears on the <a href="mod/">module index page</a>.</p>
  81.  
  82. </div><div class="top"><a href="#page-header"><img alt="top" src="./images/up.gif" /></a></div>
  83. <div class="section">
  84. <h2><a name="choosing" id="choosing">Choosing an MPM</a></h2>
  85.  
  86.     <p>MPMs must be chosen during configuration, and compiled into
  87.     the server. Compilers are capable of optimizing a lot of
  88.     functions if threads are used, but only if they know that
  89.     threads are being used.</p>
  90.  
  91.     <p>To actually choose the desired MPM, use the argument
  92.       <code>--with-mpm=<em>NAME</em></code> with the
  93.       <code class="program"><a href="./programs/configure.html">configure</a></code> script. <em>NAME</em> is the name of the
  94.       desired MPM.</p>
  95.  
  96.     <p>Once the server has been compiled, it is possible to
  97.     determine which MPM was chosen by using <code>./httpd
  98.     -l</code>. This command will list every module that is compiled
  99.     into the server, including the MPM.</p>
  100. </div><div class="top"><a href="#page-header"><img alt="top" src="./images/up.gif" /></a></div>
  101. <div class="section">
  102. <h2><a name="defaults" id="defaults">MPM Defaults</a></h2>
  103.  
  104. <p>The following table lists the default MPMs for various operating
  105. systems.  This will be the MPM selected if you do not make another
  106. choice at compile-time.</p>
  107.  
  108. <table>
  109.  
  110. <tr><td>BeOS</td><td><code class="module"><a href="./mod/beos.html">beos</a></code></td></tr>
  111. <tr><td>Netware</td><td><code class="module"><a href="./mod/mpm_netware.html">mpm_netware</a></code></td></tr>
  112. <tr><td>OS/2</td><td><code class="module"><a href="./mod/mpmt_os2.html">mpmt_os2</a></code></td></tr>
  113. <tr><td>Unix</td><td><code class="module"><a href="./mod/prefork.html">prefork</a></code></td></tr>
  114. <tr><td>Windows</td><td><code class="module"><a href="./mod/mpm_winnt.html">mpm_winnt</a></code></td></tr>
  115. </table>
  116. </div></div>
  117. <div class="bottomlang">
  118. <p><span>Available Languages: </span><a href="./de/mpm.html" hreflang="de" rel="alternate" title="Deutsch"> de </a> |
  119. <a href="./en/mpm.html" title="English"> en </a> |
  120. <a href="./es/mpm.html" hreflang="es" rel="alternate" title="Espa±ol"> es </a> |
  121. <a href="./fr/mpm.html" hreflang="fr" rel="alternate" title="Franτais"> fr </a> |
  122. <a href="./ja/mpm.html" hreflang="ja" rel="alternate" title="Japanese"> ja </a> |
  123. <a href="./ko/mpm.html" hreflang="ko" rel="alternate" title="Korean"> ko </a></p>
  124. </div><div id="footer">
  125. <p class="apache">Copyright 2007 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
  126. <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>
  127. </body></html>