cd /tmp
wget
ftp://ftp.mrunix.net/pub/webalizer/w....01-10-src.tgz
tar zxvf webalizer-2.01-10-src.tgz
cd webalizer-2.01-10
./configure
make
make install
man webaliser (read)
[pico/vim/emacs/editor of choice] /etc/webalizer.conf
webalizer
I got a shellscript that I use to gen stats for all my domains:
--------- log.sh ----------
#!/bin/sh
PATH=/usr/local/bin:$PATH
TZ=CET
export TZ
p="/path_to_the_access_logs/"
out="/path_to_your_passwordprotected_statsdir/"
x="domain1.com"; webalizer -o $out/$x/ $p/$x-access_log -r $x
x="domain2.com"; webalizer -o $out/$x/ $p/$x-access_log -r $x
.
.
.
----------------------------