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 / F253027_fdlimits.xml < prev    next >
Extensible Markup Language  |  2003-04-23  |  4KB  |  113 lines

  1. <?xml version='1.0' encoding='UTF-8' ?>
  2. <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
  3. <?xml-stylesheet type="text/xsl" href="../style/manual.en.xsl"?>
  4.  
  5. <manualpage metafile="fd-limits.xml.meta">
  6. <parentdocument href="./">Virtual Hosts</parentdocument>
  7.   <title>File Descriptor Limits</title>
  8.  
  9. <summary>
  10.  
  11.     <p>When using a large number of Virtual Hosts, Apache may run
  12.     out of available file descriptors (sometimes called <cite>file
  13.     handles</cite>) if each Virtual Host specifies different log
  14.     files. The total number of file descriptors used by Apache is
  15.     one for each distinct error log file, one for every other log
  16.     file directive, plus 10-20 for internal use. Unix operating
  17.     systems limit the number of file descriptors that may be used
  18.     by a process; the limit is typically 64, and may usually be
  19.     increased up to a large hard-limit.</p>
  20.  
  21.     <p>Although Apache attempts to increase the limit as required,
  22.     this may not work if:</p>
  23.  
  24.     <ol>
  25.       <li>Your system does not provide the <code>setrlimit()</code>
  26.       system call.</li>
  27.  
  28.       <li>The <code>setrlimit(RLIMIT_NOFILE)</code> call does not
  29.       function on your system (such as Solaris 2.3)</li>
  30.  
  31.       <li>The number of file descriptors required exceeds the hard
  32.       limit.</li>
  33.       
  34.       <li>Your system imposes other limits on file descriptors,
  35.       such as a limit on stdio streams only using file descriptors
  36.       below 256. (Solaris 2)</li>
  37.     </ol>
  38.  
  39.     <p>In the event of problems you can:</p>
  40.  
  41.     <ul>
  42.       <li>Reduce the number of log files; don't specify log files
  43.       in the <directive type="section" module="core">VirtualHost</directive>
  44.       sections, but only log to the main log files. (See <a
  45.       href="#splitlogs">Splitting up your log files</a>, below, for more
  46.       information on doing this.)</li>
  47.  
  48.       <li>
  49.         If you system falls into 1 or 2 (above), then increase the
  50.         file descriptor limit before starting Apache, using a
  51.         script like
  52.  
  53.         <example>
  54.           <code>#!/bin/sh<br />
  55.            ulimit -S -n 100<br />
  56.            exec httpd</code>
  57.         </example>
  58.       </li>
  59.     </ul>
  60.  
  61.     <p>Please see the <a
  62.     href="../misc/descriptors.html">Descriptors and Apache</a>
  63.     document containing further details about file descriptor
  64.     problems and how they can be solved on your operating
  65.     system.</p>
  66.  
  67. </summary>
  68.  
  69. <section id="splitlogs"><title>Splitting up your log files</title>
  70.  
  71. <p>If you want to log multiple virtual hosts to the same log file, you
  72. may want to split up the log files afterwards in order to run
  73. statistical analysis of the various virtual hosts. This can be
  74. accomplished in the following manner.</p>
  75.  
  76. <p>First, you will need to add the virtual host information to the log
  77. entries. This can be done using the <directive module="mod_log_config">
  78. LogFormat</directive>
  79. directive, and the <code>%v</code> variable. Add this to the beginning
  80. of your log format string:</p>
  81.  
  82. <example>
  83. LogFormat "%v %h %l %u %t \"%r\" %>s %b" vhost<br />
  84. CustomLog logs/multiple_vhost_log vhost
  85. </example>
  86.  
  87. <p>This will create a log file in the common log format, but with the
  88. canonical virtual host (whatever appears in the
  89. <directive module="core">ServerName</directive> directive) prepended to
  90. each line. (See <directive
  91. module="mod_log_config">Custom Log Formats</directive> for
  92. more about customizing your log files.)</p>
  93.  
  94. <p>When you wish to split your log file into its component parts (one
  95. file per virtual host) you can use the program <code><a
  96. href="../programs/other.html">split-logfile</a></code> to accomplish
  97. this. You'll find this program in the <code>support</code> directory
  98. of the Apache distribution.</p>
  99.  
  100. <p>Run this program with the command:</p>
  101.  
  102. <example>
  103. split-logfile < /logs/multiple_vhost_log
  104. </example>
  105.  
  106. <p>This program, when run with the name of your vhost log file, will
  107. generate one file for each virtual host that appears in your log file.
  108. Each file will be called <code>hostname.log</code>.</p>
  109.  
  110. </section>
  111. </manualpage>
  112.  
  113.