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 / F252241_logs.xml < prev    next >
Extensible Markup Language  |  2003-06-22  |  27KB  |  610 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="logs.xml.meta">
  6.  
  7.   <title>Log Files</title>
  8.  
  9.   <summary>
  10.     <p>In order to effectively manage a web server, it is necessary
  11.     to get feedback about the activity and performance of the
  12.     server as well as any problems that may be occurring. The Apache
  13.     HTTP Server provides very comprehensive and flexible logging
  14.     capabilities. This document describes how to configure its
  15.     logging capabilities, and how to understand what the logs
  16.     contain.</p>
  17.   </summary>
  18.  
  19.   <section id="security">
  20.     <title>Security Warning</title>
  21.  
  22.     <p>Anyone who can write to the directory where Apache is
  23.     writing a log file can almost certainly gain access to the uid
  24.     that the server is started as, which is normally root. Do
  25.     <em>NOT</em> give people write access to the directory the logs
  26.     are stored in without being aware of the consequences; see the
  27.     <a href="misc/security_tips.html">security tips</a> document
  28.     for details.</p>
  29.  
  30.     <p>In addition, log files may contain information supplied
  31.     directly by the client, without escaping. Therefore, it is
  32.     possible for malicious clients to insert control-characters in
  33.     the log files, so care must be taken in dealing with raw
  34.     logs.</p>
  35.   </section>
  36.  
  37.   <section id="errorlog">
  38.     <title>Error Log</title>
  39.  
  40.     <related>
  41.       <directivelist>
  42.         <directive module="core">ErrorLog</directive>
  43.         <directive module="core">LogLevel</directive>
  44.       </directivelist>
  45.     </related>
  46.  
  47.     <p>The server error log, whose name and location is set by the
  48.     <directive module="core">ErrorLog</directive> directive, is the
  49.     most important log file. This is the place where Apache httpd
  50.     will send diagnostic information and record any errors that it
  51.     encounters in processing requests. It is the first place to
  52.     look when a problem occurs with starting the server or with the
  53.     operation of the server, since it will often contain details of
  54.     what went wrong and how to fix it.</p>
  55.  
  56.     <p>The error log is usually written to a file (typically
  57.     <code>error_log</code> on unix systems and
  58.     <code>error.log</code> on Windows and OS/2). On unix systems it
  59.     is also possible to have the server send errors to
  60.     <code>syslog</code> or <a href="#piped">pipe them to a
  61.     program</a>.</p>
  62.  
  63.     <p>The format of the error log is relatively free-form and
  64.     descriptive. But there is certain information that is contained
  65.     in most error log entries. For example, here is a typical
  66.     message.</p>
  67.  
  68.     <example>
  69.       [Wed Oct 11 14:32:52 2000] [error] [client 127.0.0.1]
  70.       client denied by server configuration:
  71.       /export/home/live/ap/htdocs/test
  72.     </example>
  73.  
  74.     <p>The first item in the log entry is the date and time of the
  75.     message. The second entry lists the severity of the error being
  76.     reported. The <directive module="core">LogLevel</directive>
  77.     directive is used to control the types of errors that are sent
  78.     to the error log by restricting the severity level. The third
  79.     entry gives the IP address of the client that generated the
  80.     error. Beyond that is the message itself, which in this case
  81.     indicates that the server has been configured to deny the
  82.     client access. The server reports the file-system path (as
  83.     opposed to the web path) of the requested document.</p>
  84.  
  85.     <p>A very wide variety of different messages can appear in the
  86.     error log. Most look similar to the example above. The error
  87.     log will also contain debugging output from CGI scripts. Any
  88.     information written to <code>stderr</code> by a CGI script will
  89.     be copied directly to the error log.</p>
  90.  
  91.     <p>It is not possible to customize the error log by adding or
  92.     removing information. However, error log entries dealing with
  93.     particular requests have corresponding entries in the <a
  94.     href="#accesslog">access log</a>. For example, the above example
  95.     entry corresponds to an access log entry with status code 403.
  96.     Since it is possible to customize the access log, you can
  97.     obtain more information about error conditions using that log
  98.     file.</p>
  99.  
  100.     <p>During testing, it is often useful to continuously monitor
  101.     the error log for any problems. On unix systems, you can
  102.     accomplish this using:</p>
  103.  
  104.     <example>
  105.       tail -f error_log
  106.     </example>
  107.   </section>
  108.  
  109.   <section id="accesslog">
  110.     <title>Access Log</title>
  111.  
  112.     <related>
  113.       <modulelist>
  114.         <module>mod_log_config</module>
  115.         <module>mod_setenvif</module>
  116.       </modulelist>
  117.       <directivelist>
  118.         <directive module="mod_log_config">CustomLog</directive>
  119.         <directive module="mod_log_config">LogFormat</directive>
  120.         <directive module="mod_setenvif">SetEnvIf</directive>
  121.       </directivelist>
  122.     </related>
  123.  
  124.     <p>The server access log records all requests processed by the
  125.     server. The location and content of the access log are
  126.     controlled by the <directive module="mod_log_config">CustomLog</directive>
  127.     directive. The <directive module="mod_log_config">LogFormat</directive>
  128.     directive can be used to simplify the selection of 
  129.     the contents of the logs. This section describes how to configure the server
  130.     to record information in the access log.</p>
  131.  
  132.     <p>Of course, storing the information in the access log is only
  133.     the start of log management. The next step is to analyze this
  134.     information to produce useful statistics. Log analysis in
  135.     general is beyond the scope of this document, and not really
  136.     part of the job of the web server itself. For more information
  137.     about this topic, and for applications which perform log
  138.     analysis, check the <a
  139.     href="http://dmoz.org/Computers/Software/Internet/Site_Management/Log_analysis/">
  140.     Open Directory</a> or <a
  141.     href="http://dir.yahoo.com/Computers_and_Internet/Software/Internet/World_Wide_Web/Servers/Log_Analysis_Tools/">
  142.     Yahoo</a>.</p>
  143.  
  144.     <p>Various versions of Apache httpd have used other modules and
  145.     directives to control access logging, including
  146.     mod_log_referer, mod_log_agent, and the
  147.     <code>TransferLog</code> directive. The <directive
  148.     module="mod_log_config">CustomLog</directive> directive now subsumes
  149.     the functionality of all the older directives.</p>
  150.  
  151.     <p>The format of the access log is highly configurable. The format
  152.     is specified using a format string that looks much like a C-style
  153.     printf(1) format string. Some examples are presented in the next
  154.     sections. For a complete list of the possible contents of the
  155.     format string, see the <module>mod_log_config</module> <a
  156.     href="mod/mod_log_config.html#formats">format strings</a>.</p>
  157.  
  158.     <section id="common">
  159.       <title>Common Log Format</title>
  160.  
  161.       <p>A typical configuration for the access log might look as
  162.       follows.</p>
  163.  
  164.       <example>
  165.         LogFormat "%h %l %u %t \"%r\" %>s %b" common<br />
  166.          CustomLog logs/access_log common
  167.       </example>
  168.  
  169.       <p>This defines the <em>nickname</em> <code>common</code> and
  170.       associates it with a particular log format string. The format
  171.       string consists of percent directives, each of which tell the
  172.       server to log a particular piece of information. Literal
  173.       characters may also be placed in the format string and will be
  174.       copied directly into the log output. The quote character
  175.       (<code>"</code>) must be escaped by placing a back-slash before
  176.       it to prevent it from being interpreted as the end of the
  177.       format string. The format string may also contain the special
  178.       control characters "<code>\n</code>" for new-line and
  179.       "<code>\t</code>" for tab.</p>
  180.  
  181.       <p>The <directive    module="mod_log_config">CustomLog</directive>
  182.       directive sets up a new log file using the defined
  183.       <em>nickname</em>. The filename for the access log is relative to
  184.       the <directive module="core">ServerRoot</directive> unless it
  185.       begins with a slash.</p>
  186.  
  187.       <p>The above configuration will write log entries in a format
  188.       known as the Common Log Format (CLF). This standard format can
  189.       be produced by many different web servers and read by many log
  190.       analysis programs. The log file entries produced in CLF will
  191.       look something like this:</p>
  192.  
  193.       <example>
  194.         127.0.0.1 - frank [10/Oct/2000:13:55:36 -0700] "GET
  195.         /apache_pb.gif HTTP/1.0" 200 2326
  196.       </example>
  197.  
  198.       <p>Each part of this log entry is described below.</p>
  199.  
  200.       <dl>
  201.         <dt><code>127.0.0.1</code> (<code>%h</code>)</dt>
  202.  
  203.         <dd>This is the IP address of the client (remote host) which
  204.         made the request to the server. If <directive
  205.         module="core">HostnameLookups</directive> is
  206.         set to <code>On</code>, then the server will try to determine
  207.         the hostname and log it in place of the IP address. However,
  208.         this configuration is not recommended since it can
  209.         significantly slow the server. Instead, it is best to use a
  210.         log post-processor such as <a
  211.         href="programs/logresolve.html">logresolve</a> to determine
  212.         the hostnames. The IP address reported here is not
  213.         necessarily the address of the machine at which the user is
  214.         sitting. If a proxy server exists between the user and the
  215.         server, this address will be the address of the proxy, rather
  216.         than the originating machine.</dd>
  217.  
  218.         <dt><code>-</code> (<code>%l</code>)</dt>
  219.  
  220.         <dd>The "hyphen" in the output indicates that the requested
  221.         piece of information is not available. In this case, the
  222.         information that is not available is the RFC 1413 identity of
  223.         the client determined by <code>identd</code> on the clients
  224.         machine. This information is highly unreliable and should
  225.         almost never be used except on tightly controlled internal
  226.         networks. Apache httpd will not even attempt to determine
  227.         this information unless <directive
  228.         module="core">IdentityCheck</directive> is set
  229.         to <code>On</code>.</dd>
  230.  
  231.         <dt><code>frank</code> (<code>%u</code>)</dt>
  232.  
  233.         <dd>This is the userid of the person requesting the document
  234.         as determined by HTTP authentication. The same value is
  235.         typically provided to CGI scripts in the
  236.         <code>REMOTE_USER</code> environment variable. If the status
  237.         code for the request (see below) is 401, then this value
  238.         should not be trusted because the user is not yet
  239.         authenticated. If the document is not password protected,
  240.         this entry will be "<code>-</code>" just like the previous
  241.         one.</dd>
  242.  
  243.         <dt><code>[10/Oct/2000:13:55:36 -0700]</code>
  244.         (<code>%t</code>)</dt>
  245.  
  246.         <dd>
  247.           The time that the server finished processing the request.
  248.           The format is: 
  249.  
  250.           <p class="indent">
  251.             <code>[day/month/year:hour:minute:second zone]<br />
  252.              day = 2*digit<br />
  253.              month = 3*letter<br />
  254.              year = 4*digit<br />
  255.              hour = 2*digit<br />
  256.              minute = 2*digit<br />
  257.              second = 2*digit<br />
  258.              zone = (`+' | `-') 4*digit</code>
  259.           </p>
  260.           It is possible to have the time displayed in another format
  261.           by specifying <code>%{format}t</code> in the log format
  262.           string, where <code>format</code> is as in
  263.           <code>strftime(3)</code> from the C standard library.
  264.         </dd>
  265.  
  266.         <dt><code>"GET /apache_pb.gif HTTP/1.0"</code>
  267.         (<code>\"%r\"</code>)</dt>
  268.  
  269.         <dd>The request line from the client is given in double
  270.         quotes. The request line contains a great deal of useful
  271.         information. First, the method used by the client is
  272.         <code>GET</code>. Second, the client requested the resource
  273.         <code>/apache_pb.gif</code>, and third, the client used the
  274.         protocol <code>HTTP/1.0</code>. It is also possible to log
  275.         one or more parts of the request line independently. For
  276.         example, the format string "<code>%m %U%q %H</code>" will log
  277.         the method, path, query-string, and protocol, resulting in
  278.         exactly the same output as "<code>%r</code>".</dd>
  279.  
  280.         <dt><code>200</code> (<code>%>s</code>)</dt>
  281.  
  282.         <dd>This is the status code that the server sends back to the
  283.         client. This information is very valuable, because it reveals
  284.         whether the request resulted in a successful response (codes
  285.         beginning in 2), a redirection (codes beginning in 3), an
  286.         error caused by the client (codes beginning in 4), or an
  287.         error in the server (codes beginning in 5). The full list of
  288.         possible status codes can be found in the <a
  289.         href="http://www.w3.org/Protocols/rfc2616/rfc2616.txt">HTTP
  290.         specification</a> (RFC2616 section 10).</dd>
  291.  
  292.         <dt><code>2326</code> (<code>%b</code>)</dt>
  293.  
  294.         <dd>The last entry indicates the size of the object returned
  295.         to the client, not including the response headers. If no
  296.         content was returned to the client, this value will be
  297.         "<code>-</code>". To log "<code>0</code>" for no content, use
  298.         <code>%B</code> instead.</dd>
  299.       </dl>
  300.     </section>
  301.  
  302.     <section id="combined">
  303.       <title>Combined Log Format</title>
  304.  
  305.       <p>Another commonly used format string is called the Combined
  306.       Log Format. It can be used as follows.</p>
  307.  
  308.       <example>
  309.         LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\"
  310.         \"%{User-agent}i\"" combined<br />
  311.          CustomLog log/access_log combined
  312.       </example>
  313.  
  314.       <p>This format is exactly the same as the Common Log Format,
  315.       with the addition of two more fields. Each of the additional
  316.       fields uses the percent-directive
  317.       <code>%{<em>header</em>}i</code>, where <em>header</em> can be
  318.       any HTTP request header. The access log under this format will
  319.       look like:</p>
  320.  
  321.       <example>
  322.         127.0.0.1 - frank [10/Oct/2000:13:55:36 -0700] "GET
  323.         /apache_pb.gif HTTP/1.0" 200 2326
  324.         "http://www.example.com/start.html" "Mozilla/4.08 [en]
  325.         (Win98; I ;Nav)"
  326.       </example>
  327.  
  328.       <p>The additional fields are:</p>
  329.  
  330.       <dl>
  331.         <dt><code>"http://www.example.com/start.html"</code>
  332.         (<code>\"%{Referer}i\"</code>)</dt>
  333.  
  334.         <dd>The "Referer" (sic) HTTP request header. This gives the
  335.         site that the client reports having been referred from. (This
  336.         should be the page that links to or includes
  337.         <code>/apache_pb.gif</code>).</dd>
  338.  
  339.         <dt><code>"Mozilla/4.08 [en] (Win98; I ;Nav)"</code>
  340.         (<code>\"%{User-agent}i\"</code>)</dt>
  341.  
  342.         <dd>The User-Agent HTTP request header. This is the
  343.         identifying information that the client browser reports about
  344.         itself.</dd>
  345.       </dl>
  346.     </section>
  347.  
  348.     <section id="multiple">
  349.       <title>Multiple Access Logs</title>
  350.  
  351.       <p>Multiple access logs can be created simply by specifying
  352.       multiple <directive module="mod_log_config">CustomLog</directive> 
  353.       directives in the configuration
  354.       file. For example, the following directives will create three
  355.       access logs. The first contains the basic CLF information,
  356.       while the second and third contain referer and browser
  357.       information. The last two <directive
  358.       module="mod_log_config">CustomLog</directive> lines show how
  359.       to mimic the effects of the <code>ReferLog</code> and <code
  360.       >AgentLog</code> directives.</p>
  361.  
  362.       <example>
  363.         LogFormat "%h %l %u %t \"%r\" %>s %b" common<br />
  364.         CustomLog logs/access_log common<br />
  365.         CustomLog logs/referer_log "%{Referer}i -> %U"<br />
  366.         CustomLog logs/agent_log "%{User-agent}i"
  367.       </example>
  368.  
  369.       <p>This example also shows that it is not necessary to define a
  370.       nickname with the <directive
  371.       module="mod_log_config">LogFormat</directive> directive. Instead,
  372.       the log format can be specified directly in the <directive
  373.       module="mod_log_config">CustomLog</directive> directive.</p>
  374.     </section>
  375.  
  376.     <section id="conditional">
  377.       <title>Conditional Logs</title>
  378.  
  379.       <p>There are times when it is convenient to exclude certain
  380.       entries from the access logs based on characteristics of the
  381.       client request. This is easily accomplished with the help of <a
  382.       href="env.html">environment variables</a>. First, an
  383.       environment variable must be set to indicate that the request
  384.       meets certain conditions. This is usually accomplished with 
  385.       <directive module="mod_setenvif">SetEnvIf</directive>. Then the
  386.       <code>env=</code> clause of the <directive
  387.       module="mod_log_config">CustomLog</directive> directive is used to
  388.       include or exclude requests where the environment variable is
  389.       set. Some examples:</p>
  390.  
  391.       <example>
  392.         # Mark requests from the loop-back interface<br />
  393.         SetEnvIf Remote_Addr "127\.0\.0\.1" dontlog<br />
  394.         # Mark requests for the robots.txt file<br />
  395.         SetEnvIf Request_URI "^/robots\.txt$" dontlog<br />
  396.         # Log what remains<br />
  397.         CustomLog logs/access_log common env=!dontlog
  398.       </example>
  399.  
  400.       <p>As another example, consider logging requests from
  401.       english-speakers to one log file, and non-english speakers to a
  402.       different log file.</p>
  403.  
  404.       <example>
  405.         SetEnvIf Accept-Language "en" english<br />
  406.         CustomLog logs/english_log common env=english<br />
  407.         CustomLog logs/non_english_log common env=!english
  408.       </example>
  409.  
  410.       <p>Although we have just shown that conditional logging is very
  411.       powerful and flexibly, it is not the only way to control the
  412.       contents of the logs. Log files are more useful when they
  413.       contain a complete record of server activity. It is often
  414.       easier to simply post-process the log files to remove requests
  415.       that you do not want to consider.</p>
  416.     </section>
  417.   </section>
  418.  
  419.   <section id="rotation">
  420.     <title>Log Rotation</title>
  421.  
  422.     <p>On even a moderately busy server, the quantity of
  423.     information stored in the log files is very large. The access
  424.     log file typically grows 1 MB or more per 10,000 requests. It
  425.     will consequently be necessary to periodically rotate the log
  426.     files by moving or deleting the existing logs. This cannot be
  427.     done while the server is running, because Apache will continue
  428.     writing to the old log file as long as it holds the file open.
  429.     Instead, the server must be <a
  430.     href="stopping.html">restarted</a> after the log files are
  431.     moved or deleted so that it will open new log files.</p>
  432.  
  433.     <p>By using a <em>graceful</em> restart, the server can be
  434.     instructed to open new log files without losing any existing or
  435.     pending connections from clients. However, in order to
  436.     accomplish this, the server must continue to write to the old
  437.     log files while it finishes serving old requests. It is
  438.     therefore necessary to wait for some time after the restart
  439.     before doing any processing on the log files. A typical
  440.     scenario that simply rotates the logs and compresses the old
  441.     logs to save space is:</p>
  442.  
  443.     <example>
  444.       mv access_log access_log.old<br />
  445.       mv error_log error_log.old<br />
  446.       apachectl graceful<br />
  447.       sleep 600<br />
  448.       gzip access_log.old error_log.old
  449.     </example>
  450.  
  451.     <p>Another way to perform log rotation is using <a
  452.     href="#piped">piped logs</a> as discussed in the next
  453.     section.</p>
  454.   </section>
  455.  
  456.   <section id="piped">
  457.     <title>Piped Logs</title>
  458.  
  459.     <p>Apache httpd is capable of writing error and access log
  460.     files through a pipe to another process, rather than directly
  461.     to a file. This capability dramatically increases the
  462.     flexibility of logging, without adding code to the main server.
  463.     In order to write logs to a pipe, simply replace the filename
  464.     with the pipe character "<code>|</code>", followed by the name
  465.     of the executable which should accept log entries on its
  466.     standard input. Apache will start the piped-log process when
  467.     the server starts, and will restart it if it crashes while the
  468.     server is running. (This last feature is why we can refer to
  469.     this technique as "reliable piped logging".)</p>
  470.  
  471.     <p>Piped log processes are spawned by the parent Apache httpd
  472.     process, and inherit the userid of that process. This means
  473.     that piped log programs usually run as root. It is therefore
  474.     very important to keep the programs simple and secure.</p>
  475.  
  476.     <p>One important use of piped logs is to allow log rotation
  477.     without having to restart the server. The Apache HTTP Server
  478.     includes a simple program called <a
  479.     href="programs/rotatelogs.html">rotatelogs</a> for this
  480.     purpose. For example, to rotate the logs every 24 hours, you
  481.     can use:</p>
  482.  
  483.     <example>
  484.       CustomLog "|/usr/local/apache/bin/rotatelogs
  485.       /var/log/access_log 86400" common
  486.     </example>
  487.  
  488.     <p>Notice that quotes are used to enclose the entire command
  489.     that will be called for the pipe. Although these examples are
  490.     for the access log, the same technique can be used for the
  491.     error log.</p>
  492.  
  493.     <p>A similar but much more flexible log rotation program
  494.     called <a href="http://www.cronolog.org/">cronolog</a>
  495.     is available at an external site.</p>
  496.  
  497.     <p>As with conditional logging, piped logs are a very powerful
  498.     tool, but they should not be used where a simpler solution like
  499.     off-line post-processing is available.</p>
  500.   </section>
  501.  
  502.   <section id="virtualhost">
  503.     <title>Virtual Hosts</title>
  504.  
  505.     <p>When running a server with many <a href="vhosts/">virtual
  506.     hosts</a>, there are several options for dealing with log
  507.     files. First, it is possible to use logs exactly as in a
  508.     single-host server. Simply by placing the logging directives
  509.     outside the <directive module="core" 
  510.     type="section">VirtualHost</directive> sections in the
  511.     main server context, it is possible to log all requests in the
  512.     same access log and error log. This technique does not allow
  513.     for easy collection of statistics on individual virtual
  514.     hosts.</p>
  515.  
  516.     <p>If <directive module="mod_log_config">CustomLog</directive> 
  517.     or <directive module="core">ErrorLog</directive>
  518.     directives are placed inside a
  519.     <directive module="core" type="section">VirtualHost</directive>
  520.     section, all requests or errors for that virtual host will be
  521.     logged only to the specified file. Any virtual host which does
  522.     not have logging directives will still have its requests sent
  523.     to the main server logs. This technique is very useful for a
  524.     small number of virtual hosts, but if the number of hosts is
  525.     very large, it can be complicated to manage. In addition, it
  526.     can often create problems with <a
  527.     href="vhosts/fd-limits.html">insufficient file
  528.     descriptors</a>.</p>
  529.  
  530.     <p>For the access log, there is a very good compromise. By
  531.     adding information on the virtual host to the log format
  532.     string, it is possible to log all hosts to the same log, and
  533.     later split the log into individual files. For example,
  534.     consider the following directives.</p>
  535.  
  536.     <example>
  537.       LogFormat "%v %l %u %t \"%r\" %>s %b"
  538.       comonvhost<br />
  539.       CustomLog logs/access_log comonvhost
  540.     </example>
  541.  
  542.     <p>The <code>%v</code> is used to log the name of the virtual
  543.     host that is serving the request. Then a program like <a
  544.     href="programs/other.html">split-logfile</a> can be used to
  545.     post-process the access log in order to split it into one file
  546.     per virtual host.</p>
  547.   </section>
  548.  
  549.   <section id="other">
  550.     <title>Other Log Files</title>
  551.  
  552.     <related>
  553.       <modulelist>
  554.         <module>mod_cgi</module>
  555.         <module>mod_rewrite</module>
  556.       </modulelist>
  557.       <directivelist>
  558.         <directive module="mpm_common">PidFile</directive>
  559.         <directive module="mod_rewrite">RewriteLog</directive>
  560.         <directive module="mod_rewrite">RewriteLogLevel</directive>
  561.         <directive module="mod_cgi">ScriptLog</directive>
  562.         <directive module="mod_cgi">ScriptLogBuffer</directive>
  563.         <directive module="mod_cgi">ScriptLogLength</directive>
  564.       </directivelist>
  565.     </related>
  566.  
  567.     <section id="pidfile">
  568.       <title>PID File</title>
  569.  
  570.       <p>On startup, Apache httpd saves the process id of the parent
  571.       httpd process to the file <code>logs/httpd.pid</code>. This
  572.       filename can be changed with the <directive
  573.       module="mpm_common">PidFile</directive> directive. The
  574.       process-id is for use by the administrator in restarting and
  575.       terminating the daemon by sending signals to the parent
  576.       process; on Windows, use the -k command line option instead.
  577.       For more information see the <a href="stopping.html">Stopping
  578.       and Restarting</a> page.</p>    
  579.     </section>
  580.  
  581.     <section id="scriptlog">
  582.       <title>Script Log</title>
  583.  
  584.       <p>In order to aid in debugging, the
  585.       <directive module="mod_cgi">ScriptLog</directive> directive
  586.       allows you to record the input to and output from CGI scripts.
  587.       This should only be used in testing - not for live servers.
  588.       More information is available in the <a
  589.       href="mod/mod_cgi.html">mod_cgi</a> documentation.</p>
  590.     </section>
  591.  
  592.     <section id="rewritelog">
  593.       <title>Rewrite Log</title>
  594.  
  595.       <p>When using the powerful and complex features of <a
  596.       href="mod/mod_rewrite.html">mod_rewrite</a>, it is almost
  597.       always necessary to use the <directive
  598.       module="mod_rewrite">RewriteLog</directive> to help
  599.       in debugging. This log file produces a detailed analysis of how
  600.       the rewriting engine transforms requests. The level of detail
  601.       is controlled by the <directive
  602.       module="mod_rewrite">RewriteLogLevel</directive> directive.</p>
  603.     </section>
  604.   </section>
  605. </manualpage>
  606.  
  607.  
  608.  
  609.  
  610.