home *** CD-ROM | disk | FTP | other *** search
/ PC World 2004 May / PCWorld_2004-05_cd.bin / komunikace / apache / apache_2.0.48-win32-x86-no_ssl.msi / Data.Cab / F253002_fdlimits.html.en < prev    next >
Extensible Markup Language  |  2003-05-29  |  7KB  |  131 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>File Descriptor Limits - 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" class="no-sidebar"><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> > <a href="./">Virtual Hosts</a></div><div id="page-content"><div id="preamble"><h1>File Descriptor Limits</h1>
  20. <div class="toplang">
  21. <p><span>Available Languages: </span><a href="../en/vhosts/fd-limits.html" title="English"> en </a> |
  22. <a href="../ja/vhosts/fd-limits.html" hreflang="ja" rel="alternate" title="Japanese"> ja </a> |
  23. <a href="../ko/vhosts/fd-limits.html" hreflang="ko" rel="alternate" title="Korean"> ko </a></p>
  24. </div>
  25.  
  26.  
  27.     <p>When using a large number of Virtual Hosts, Apache may run
  28.     out of available file descriptors (sometimes called <cite>file
  29.     handles</cite>) if each Virtual Host specifies different log
  30.     files. The total number of file descriptors used by Apache is
  31.     one for each distinct error log file, one for every other log
  32.     file directive, plus 10-20 for internal use. Unix operating
  33.     systems limit the number of file descriptors that may be used
  34.     by a process; the limit is typically 64, and may usually be
  35.     increased up to a large hard-limit.</p>
  36.  
  37.     <p>Although Apache attempts to increase the limit as required,
  38.     this may not work if:</p>
  39.  
  40.     <ol>
  41.       <li>Your system does not provide the <code>setrlimit()</code>
  42.       system call.</li>
  43.  
  44.       <li>The <code>setrlimit(RLIMIT_NOFILE)</code> call does not
  45.       function on your system (such as Solaris 2.3)</li>
  46.  
  47.       <li>The number of file descriptors required exceeds the hard
  48.       limit.</li>
  49.       
  50.       <li>Your system imposes other limits on file descriptors,
  51.       such as a limit on stdio streams only using file descriptors
  52.       below 256. (Solaris 2)</li>
  53.     </ol>
  54.  
  55.     <p>In the event of problems you can:</p>
  56.  
  57.     <ul>
  58.       <li>Reduce the number of log files; don't specify log files
  59.       in the <code class="directive"><a href="../mod/core.html#virtualhost"><VirtualHost></a></code>
  60.       sections, but only log to the main log files. (See <a href="#splitlogs">Splitting up your log files</a>, below, for more
  61.       information on doing this.)</li>
  62.  
  63.       <li>
  64.         If you system falls into 1 or 2 (above), then increase the
  65.         file descriptor limit before starting Apache, using a
  66.         script like
  67.  
  68.         <div class="example"><p><code>
  69.           <code>#!/bin/sh<br />
  70.            ulimit -S -n 100<br />
  71.            exec httpd</code>
  72.         </code></p></div>
  73.       </li>
  74.     </ul>
  75.  
  76.     <p>Please see the <a href="../misc/descriptors.html">Descriptors and Apache</a>
  77.     document containing further details about file descriptor
  78.     problems and how they can be solved on your operating
  79.     system.</p>
  80.  
  81. </div>
  82. <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  83. <div class="section">
  84. <h2><a name="splitlogs" id="splitlogs">Splitting up your log files</a></h2>
  85.  
  86. <p>If you want to log multiple virtual hosts to the same log file, you
  87. may want to split up the log files afterwards in order to run
  88. statistical analysis of the various virtual hosts. This can be
  89. accomplished in the following manner.</p>
  90.  
  91. <p>First, you will need to add the virtual host information to the log
  92. entries. This can be done using the <code class="directive"><a href="../mod/mod_log_config.html# logformat">
  93. LogFormat</a></code>
  94. directive, and the <code>%v</code> variable. Add this to the beginning
  95. of your log format string:</p>
  96.  
  97. <div class="example"><p><code>
  98. LogFormat "%v %h %l %u %t \"%r\" %>s %b" vhost<br />
  99. CustomLog logs/multiple_vhost_log vhost
  100. </code></p></div>
  101.  
  102. <p>This will create a log file in the common log format, but with the
  103. canonical virtual host (whatever appears in the
  104. <code class="directive"><a href="../mod/core.html#servername">ServerName</a></code> directive) prepended to
  105. each line. (See <code class="directive"><a href="../mod/mod_log_config.html#custom log formats">Custom Log Formats</a></code> for
  106. more about customizing your log files.)</p>
  107.  
  108. <p>When you wish to split your log file into its component parts (one
  109. file per virtual host) you can use the program <code><a href="../programs/other.html">split-logfile</a></code> to accomplish
  110. this. You'll find this program in the <code>support</code> directory
  111. of the Apache distribution.</p>
  112.  
  113. <p>Run this program with the command:</p>
  114.  
  115. <div class="example"><p><code>
  116. split-logfile < /logs/multiple_vhost_log
  117. </code></p></div>
  118.  
  119. <p>This program, when run with the name of your vhost log file, will
  120. generate one file for each virtual host that appears in your log file.
  121. Each file will be called <code>hostname.log</code>.</p>
  122.  
  123. </div></div>
  124. <div class="bottomlang">
  125. <p><span>Available Languages: </span><a href="../en/vhosts/fd-limits.html" title="English"> en </a> |
  126. <a href="../ja/vhosts/fd-limits.html" hreflang="ja" rel="alternate" title="Japanese"> ja </a> |
  127. <a href="../ko/vhosts/fd-limits.html" hreflang="ko" rel="alternate" title="Korean"> ko </a></p>
  128. </div><div id="footer">
  129. <p class="apache">Maintained by the <a href="http://httpd.apache.org/docs-project/">Apache HTTP Server Documentation Project</a></p>
  130. <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>
  131. </body></html>