个人工具

UbuntuHelp:AWStats

来自Ubuntu中文

跳转至: 导航, 搜索


<<Include(Tag/NeedsExpansion)>>

Introduction

Finding AWStats documentation specific to Ubuntu is tough. It shouldn't be this way. Perhaps the most important step is to get XChat and subscribe to channel "#awstats" on the "Ubuntu Server". AWstats is a Perl script (awstats.pl), which parses your server’s log files and generates reports either dynamically, when used as a CGI script through the web browser, or by creating static HTML pages, when used directly from the command line or through cron. It also comes with some other helper Perl scripts to make this task even easier. In other words it is a PERL script that pretty prints an Apache log file. Dead simple, end of the story, period. It's as complicated at 'tail -f'. This document is an attempt to make it simple once again.

REQUIREMENTS: AWStats 6.5-2, and Apache 2.0

To determine the versions of software you are using do:

  1. AWStats 6.5-2
    1. With the mouse select: 'System/Administration/Synaptic Package Manager'
    2. Click the search icon and type in awstats
    3. Check the version you have installed or install the latest version.
  2. Apache 2.0
    1. Repeat steps for AWStats but for apache and verify you have 2.0.55-rubuntu4 installed or equivalent
  3. Need PERL 5.00503 or better
    1. Open a terminal session Applications/Accessories/Terminal
    2. type perl -v and verify it's better than 5.00503 (You will probably see something like: This is perl, v5.8.8 built for i486-linux-gnu-thread-multi.)
  4. tail your log file you are working with to verify it's readable.

Installation

  1. Install AWStats with Synaptic or
sudo apt-get install awstats

Configuration

  1. Make a backup of apache2.conf
    1. cd /etc/apache2
    2. mkdir RCS (This is only necessary if you don't have an RCS directory installed there already.)
    3. ci -l apache2.conf (check in the file before marking it up.) (ci is listed as rcs in the repositories. Run sudo apt-get install rcs to install)
  2. Make a directory to correspond with the AWStats documentation and set it up:
    1. cd /usr/local
    2. mkdir awstats
    3. cd awstats
    4. cp -R /usr/share/doc/awstats/examples/*.* .
    5. gunzip awstats.model.conf.gz
    6. mkdir RCS
    7. ci -l awstats.model.conf
    8. mkdir wwwroot
    9. mkdir wwwroot/cgi-bin

    Links