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