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