<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Apache Log file analyzer Using Awstats in Debian</title>
	<atom:link href="http://www.debianadmin.com/apache-log-file-analyzer-using-awstats-in-debian.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.debianadmin.com/apache-log-file-analyzer-using-awstats-in-debian.html</link>
	<description>Debian/Ubuntu Linux System Administration Tutorials,Howtos,Tips</description>
	<lastBuildDate>Thu, 19 Nov 2009 13:24:32 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Jaime Alberto Silva</title>
		<link>http://www.debianadmin.com/apache-log-file-analyzer-using-awstats-in-debian.html/comment-page-1#comment-3732</link>
		<dc:creator>Jaime Alberto Silva</dc:creator>
		<pubDate>Tue, 29 Sep 2009 17:18:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/apache-log-file-analyzer-using-awstats-in-debian.html#comment-3732</guid>
		<description>Is there an updated tutorial on this topic? I&#039;m using Debian testing (sept 2009) and I&#039;ve found that there is no wwwroot directory in /usr/share/doc/awstats/examples. I&#039;ve also found that the awstats_configure.pl paths are still not changed by package maintainers.

Is there an easier to configure tool for web log analysis?</description>
		<content:encoded><![CDATA[<p>Is there an updated tutorial on this topic? I&#8217;m using Debian testing (sept 2009) and I&#8217;ve found that there is no wwwroot directory in /usr/share/doc/awstats/examples. I&#8217;ve also found that the awstats_configure.pl paths are still not changed by package maintainers.</p>
<p>Is there an easier to configure tool for web log analysis?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gabriel Filion</title>
		<link>http://www.debianadmin.com/apache-log-file-analyzer-using-awstats-in-debian.html/comment-page-1#comment-1790</link>
		<dc:creator>Gabriel Filion</dc:creator>
		<pubDate>Tue, 25 Sep 2007 19:34:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/apache-log-file-analyzer-using-awstats-in-debian.html#comment-1790</guid>
		<description>Lachlan: even though your logrotate runs daily, you have set the config &quot;weekly&quot; in your logrotate file for apache. it will thus rotate only once every week. change it to &quot;daily&quot; if you want dayly rotation of your logs.</description>
		<content:encoded><![CDATA[<p>Lachlan: even though your logrotate runs daily, you have set the config &#8220;weekly&#8221; in your logrotate file for apache. it will thus rotate only once every week. change it to &#8220;daily&#8221; if you want dayly rotation of your logs.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lachlan Musicman</title>
		<link>http://www.debianadmin.com/apache-log-file-analyzer-using-awstats-in-debian.html/comment-page-1#comment-1789</link>
		<dc:creator>Lachlan Musicman</dc:creator>
		<pubDate>Thu, 21 Jun 2007 03:54:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/apache-log-file-analyzer-using-awstats-in-debian.html#comment-1789</guid>
		<description>Hola,

I&#039;ve got a successful Awstats install that I created using roughly the same procedure. I might have followed the debianhelp instructions though...

I was wondering if you know much about the cron part?

I can&#039;t seem to get the cron working. I don&#039;t have a special cron for awstats - I&#039;ve got my logrotate set up as follows:

/var/log/apache2/*.log {
        weekly
        missingok
        rotate 52
        compress
        delaycompress
        notifempty
        create 644 root adm
        sharedscripts
        prerotate
                /path/to/awstats_buildstaticpages.pl -config=engagemedia
.org -update -awstatsprog=/path/to/cgi-bin/awstats.pl -dir=/path/to/awstats/ -buil
ddate=%YY%MM%DD
        endscript
        postrotate
                if [ -f /var/run/apache2.pid ]; then
                        /etc/init.d/apache2 restart &gt; /dev/null
                fi
        endscript
}

If I run &quot;logrotate /etc/logrotate.conf from the command line, it works fine, but cron wont run it, despite logrotate being in /etc/cron.daily?

less /etc/cron.daily/logrotate

#!/bin/sh

test -x /usr/sbin/logrotate &#124;&#124; exit 0
/usr/sbin/logrotate /etc/logrotate.conf

Help appreciated</description>
		<content:encoded><![CDATA[<p>Hola,</p>
<p>I&#8217;ve got a successful Awstats install that I created using roughly the same procedure. I might have followed the debianhelp instructions though&#8230;</p>
<p>I was wondering if you know much about the cron part?</p>
<p>I can&#8217;t seem to get the cron working. I don&#8217;t have a special cron for awstats &#8211; I&#8217;ve got my logrotate set up as follows:</p>
<p>/var/log/apache2/*.log {<br />
        weekly<br />
        missingok<br />
        rotate 52<br />
        compress<br />
        delaycompress<br />
        notifempty<br />
        create 644 root adm<br />
        sharedscripts<br />
        prerotate<br />
                /path/to/awstats_buildstaticpages.pl -config=engagemedia<br />
.org -update -awstatsprog=/path/to/cgi-bin/awstats.pl -dir=/path/to/awstats/ -buil<br />
ddate=%YY%MM%DD<br />
        endscript<br />
        postrotate<br />
                if [ -f /var/run/apache2.pid ]; then<br />
                        /etc/init.d/apache2 restart &gt; /dev/null<br />
                fi<br />
        endscript<br />
}</p>
<p>If I run &#8220;logrotate /etc/logrotate.conf from the command line, it works fine, but cron wont run it, despite logrotate being in /etc/cron.daily?</p>
<p>less /etc/cron.daily/logrotate</p>
<p>#!/bin/sh</p>
<p>test -x /usr/sbin/logrotate || exit 0<br />
/usr/sbin/logrotate /etc/logrotate.conf</p>
<p>Help appreciated</p>
]]></content:encoded>
	</item>
</channel>
</rss>
