Awstats: Difference between revisions

From Alpine Linux
(fix minor typos)
mNo edit summary
(6 intermediate revisions by 4 users not shown)
Line 1: Line 1:
== Set up Awstats on Alpine Linux ==
[http://awstats.sourceforge.net/ AWStats] is a powerful tool which generates server statistics. AWstats works as a CGI or from command line and shows you all possible information your log contains in a graphical way.
 
This document will be a quick c/p guide to setup awstats log analyzer on Alpine linux. What we will install is the following:
 
*Lighttpd
*Awstats


== Installing Lighthttpd and Awstats ==
== Installing Lighthttpd and Awstats ==


'''Add Backports Repositories'''
{{:Setting Up Lighttpd With FastCGI}}
 
    cp /etc/apk/repositories /etc/apk/repositories.old
    echo -e "http://build.alpinelinux.org:8009/backports/1.10/" >> /etc/apk/repositories
 
'''Installing Lighthttpd and Awstats'''


    apk add lighttpd awstats -U --allow-untrusted
'''Installing Awstats'''


'''Removing Bakcports Repositories'''
{{Cmd|apk add awstats -U -X http://build.alpinelinux.org:8009/backports/1.10/ --allow-untrusted}}


    cp /etc/apk/repositories.old /etc/apk/repositories
In /etc/lighttpd/lighttpd.conf:
    rm /etc/apk/repositories.old
 
== Configuring Lighttpd==
 
'''Edit lighttpd.conf'''
 
  nano /etc/lighttpd/lighttpd.conf
 
Uncomment line:
 
  include "mod_cgi.conf"
 
Change the base server root folder
 
  #server.document-root = var.basedir + "/htdocs"
  server.document-root = "/usr/lib/awstats"


Change the base server root folder
#server.document-root = var.basedir + "/htdocs"
server.document-root = "/usr/lib/awstats"


== Configuting Awstats ==
== Configuting Awstats ==
Line 42: Line 19:
'''Run awstats_configure.pl'''
'''Run awstats_configure.pl'''


    awstats_configure.pl
{{Cmd|awstats_configure.pl}}


     -----> Running OS detected: Linux, BSD or Unix
     -----> Running OS detected: Linux, BSD or Unix
Line 62: Line 39:
     Press ENTER to finish...
     Press ENTER to finish...


'''Edit lighttpd.conf'''
'''Edit awstats.awstats.conf '''


     nano /etc/awstats/awstats.awstats.conf  
     nano /etc/awstats/awstats.awstats.conf  
     Search the line '''LogFile=" "''' and configure your log path and file. e.g.''' LogFile="/va/log/messages"'''
     Search the line '''LogFile=" "''' and configure your log path and file. e.g.''' LogFile="/var/log/messages"'''


'''Start http server and add to boot'''
'''Start http server and add to boot'''


    /etc/init.d/lighttpd start && rc-update add lighttpd default
{{Cmd|/etc/init.d/lighttpd start && rc-update add lighttpd default}}


Browse  
Browse  
Line 77: Line 54:
Note: Awstats is not working yet with dansguardian logs.
Note: Awstats is not working yet with dansguardian logs.


 
[[Category:Monitoring]]
EOF

Revision as of 13:11, 8 January 2013

AWStats is a powerful tool which generates server statistics. AWstats works as a CGI or from command line and shows you all possible information your log contains in a graphical way.

Installing Lighthttpd and Awstats

Basic Installation

For installing the additional packages first activate community packages and update the package index

Install the required packages:

# apk add lighttpd php82 fcgi php82-cgi

Configure Lighttpd

Edit lighttpd.conf (/etc/lighttpd/lighttpd.conf) and uncomment the line:

Contents of /etc/lighttpd/lighttpd.conf

... include "mod_fastcgi.conf" ...

Edit mod_fastcgi.conf (/etc/lighttpd/mod_fastcgi.conf), find and change /usr/bin/php-cgi to /usr/bin/php-cgi82.

Contents of /etc/lighttpd/mod_fastcgi.conf

... "bin-path" => "/usr/bin/php-cgi82" # php-cgi ...

Start lighttpd service and add it to default runlevel

# rc-service lighttpd start # rc-update add lighttpd default

Installing Awstats

apk add awstats -U -X http://build.alpinelinux.org:8009/backports/1.10/ --allow-untrusted

In /etc/lighttpd/lighttpd.conf:

Change the base server root folder
#server.document-root = var.basedir + "/htdocs" 
server.document-root = "/usr/lib/awstats"

Configuting Awstats

Run awstats_configure.pl

awstats_configure.pl

   -----> Running OS detected: Linux, BSD or Unix
   Do you want to continue setup from this NON standard directory [yN] ? y
   
   -----> Check for web server install
   Config file path ('none' to skip web server setup): none
   -----> Need to create a new config file ?  y
   
   -----> Define config file name to create
   Example: www.mysite.com
   Example: demo
   Your web site, virtual server or profile name: awstats
   
   -----> Define config file path
   >/etc/awstats 
   
   Press ENTER to continue...
   Press ENTER to finish...

Edit awstats.awstats.conf

   nano /etc/awstats/awstats.awstats.conf 
   Search the line LogFile=" " and configure your log path and file. e.g. LogFile="/var/log/messages"

Start http server and add to boot

/etc/init.d/lighttpd start && rc-update add lighttpd default

Browse

   http://AWSTATS_IP_NUMBER/cgi-bin/awstats.pl?config=awstats

Note: Awstats is not working yet with dansguardian logs.