split-logfile.html.en revision 0d0ba3a410038e179b695446bb149cce6264e0ab
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head><!--
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen This file is generated from xml source: DO NOT EDIT
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen<title>split-logfile - Split up multi-vhost logfiles - Apache HTTP Server</title>
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen<link href="/style/css/manual.css" rel="stylesheet" media="all" type="text/css" title="Main stylesheet" />
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen<link href="/style/css/manual-loose-100pc.css" rel="alternate stylesheet" media="all" type="text/css" title="No Sidebar - Default font size" />
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen<link href="/style/css/manual-print.css" rel="stylesheet" media="print" type="text/css" /><link rel="stylesheet" type="text/css" href="/style/css/prettify.css" />
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen<script src="/style/scripts/prettify.js" type="text/javascript">
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen<link href="/images/favicon.ico" rel="shortcut icon" /></head>
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen<body id="manual-page" class="no-sidebar"><div id="page-header">
d229f940abfb2490dee17979e9a5ff31b7012eb5rbowen<p class="menu"><a href="/mod/">Modules</a> | <a href="/mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="/glossary.html">Glossary</a> | <a href="/sitemap.html">Sitemap</a></p>
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen<div class="up"><a href="./"><img title="<-" alt="<-" src="/images/left.gif" /></a></div>
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen<a href="http://www.apache.org/">Apache</a> > <a href="http://httpd.apache.org/">HTTP Server</a> > <a href="http://httpd.apache.org/docs/">Documentation</a> > <a href="../">Version 2.5</a> > <a href="./">Programs</a></div><div id="page-content"><div id="preamble"><h1>split-logfile - Split up multi-vhost logfiles</h1>
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen<p><span>Available Languages: </span><a href="/en/programs/other.html" title="English"> en </a> |
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen<a href="/ko/programs/other.html" hreflang="ko" rel="alternate" title="Korean"> ko </a> |
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen<a href="/tr/programs/other.html" hreflang="tr" rel="alternate" title="T�rk�e"> tr </a></p>
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen <p>This perl script will take a combined Web server access log file and
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen break its contents into separate files. It assumes that the first field of
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen each line is the virtual host identity, put there using the "<code>%v</code>"
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen variable in <code class="directive"><a href="/mod/mod_log_config.html#logformat">LogFormat</a></code>.
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen<div class="top"><a href="#page-header"><img alt="top" src="/images/up.gif" /></a></div>
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen<h2><a name="split-logfile" id="split-logfile">Usage</a></h2>
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen <p>Create a log file with virtual host information in it:</p>
c3f8f8b0ccc14b14fbeda7a971593bbbe989fa5bhumbedoohLogFormat "%v %h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-agent}i\"" combined_plus_vhost
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen <p>Log files will be created, in the directory where you run the
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen script, for each virtual host name that appears in the combined log file.
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen These logfiles will named after the hostname, with a
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen <p>The combined log file is read from stdin. Records read will be appended
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen to any existing log files.</p>
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen <div class="example"><p><code>split-logfile < access_log</code></p></div>
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen<p><span>Available Languages: </span><a href="/en/programs/other.html" title="English"> en </a> |
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen<a href="/ko/programs/other.html" hreflang="ko" rel="alternate" title="Korean"> ko </a> |
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen<a href="/tr/programs/other.html" hreflang="tr" rel="alternate" title="T�rk�e"> tr </a></p>
30471a4650391f57975f60bbb6e4a90be7b284bfhumbedooh</div><div class="top"><a href="#page-header"><img src="/images/up.gif" alt="top" /></a></div><div class="section"><h2><a id="comments_section" name="comments_section">Comments</a></h2><div class="warning"><strong>This section is experimental!</strong><br />Comments placed here should not be expected
19737f4fbef1805f9c3e9e045bb6d710a1e5e10fhumbedoohto last beyond the testing phase of this system, nor do we in any way guarantee that we'll read them.</div>
30471a4650391f57975f60bbb6e4a90be7b284bfhumbedoohvar disqus_shortname = 'httpd';
0d0ba3a410038e179b695446bb149cce6264e0abndvar disqus_identifier = 'http://httpd.apache.org/docs/2.4/programs/other.html.en';
0d0ba3a410038e179b695446bb149cce6264e0abnd(function(w, d) {
0d0ba3a410038e179b695446bb149cce6264e0abnd if (w.location.hostname.toLowerCase() == "httpd.apache.org") {
0d0ba3a410038e179b695446bb149cce6264e0abnd d.write('<div id="disqus_thread"><\/div>');
0d0ba3a410038e179b695446bb149cce6264e0abnd var s = d.createElement('script');
0d0ba3a410038e179b695446bb149cce6264e0abnd s.src = 'http' + '://' + disqus_shortname + '.disqus.com/embed.js';
0d0ba3a410038e179b695446bb149cce6264e0abnd (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
0d0ba3a410038e179b695446bb149cce6264e0abnd d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>');
0d0ba3a410038e179b695446bb149cce6264e0abnd})(window, document);
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen<p class="apache">Copyright 2012 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>
d229f940abfb2490dee17979e9a5ff31b7012eb5rbowen<p class="menu"><a href="/mod/">Modules</a> | <a href="/mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="/glossary.html">Glossary</a> | <a href="/sitemap.html">Sitemap</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
0d0ba3a410038e179b695446bb149cce6264e0abndif (typeof(prettyPrint) !== 'undefined') {
7fec19672a491661b2fe4b29f685bc7f4efa64d4nd prettyPrint();