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