Fedora 18
Sponsored Link

Apache アクセスログ解析 - AWstats2013/01/28

 
アクセスログ解析ツール AWstats をインストールします。
[1] AWstats インストール
[root@www ~]#
yum -y install awstats
# 「awstats.(ホスト).conf」が作成されている

[root@www ~]#
vi /etc/awstats/awstats.www.srv.world.conf
# 122行目:変更

# Apache のログフォーマットが"combined"の場合は「1」

# "common"の場合は「4」( ただしこの場合ブラウザ情報等、一部の解析はできなくなる)

LogFormat=
1
# 168行目:除外するドメイン名/IPアドレス追記

HostAliases="
localhost 127.0.0.1 REGEX[server\.world$] REGEX[^10\.0\.0\.]
"
# 905行目:変更

Lang="
jp
"
[root@www ~]#
vi /etc/httpd/conf.d/awstats.conf
# 24行目:Alias追記

Alias /report "/usr/share/awstats/wwwroot/"

<Directory "/usr/share/awstats/wwwroot">
    Options None
    AllowOverride None
    <IfModule mod_authz_core.c>
        # Apache 2.4
        Require local
# 31行目: アクセス許可IPアドレス追記

       
Require ip 10.0.0.0/24

    </IfModule>
[root@www ~]#
systemctl restart httpd.service

# レポート出力

[root@www ~]#
/usr/share/awstats/wwwroot/cgi-bin/awstats.pl -config=www.srv.world -update

Create/Update database for config "/etc/awstats/awstats.www.srv.world.conf" by AWStats version 7.0 (build 1.971)
From data in log file "/var/log/httpd/access_log"...
Phase 1 : First bypass old records, searching new record...
Searching new records from beginning of log file...
Phase 2 : Now process new records (Flush history on disk after 20000 hosts)...
Jumped lines in file: 0
Parsed lines in file: 24
Found 0 dropped records,
Found 0 comments,
Found 0 blank records,
Found 0 corrupted records,
Found 0 old records,
Found 24 new qualified records.
# 出力したレポートをHTMLにする

[root@www ~]#
/usr/share/awstats/wwwroot/cgi-bin/awstats.pl -config=www.srv.world -output -staticlink > /usr/share/awstats/wwwroot/index.html
# cronの内容を変更しておく

[root@www ~]#
vi /etc/cron.hourly/awstats
#!/bin/bash
# コメント化

#
exec /usr/share/awstats/tools/awstats_updateall.pl now -configdir="/etc/awstats" -awstatsprog="/usr/share/awstats/wwwroot/cgi-bin/awstats.pl" > /dev/null
# 追記

/usr/share/awstats/wwwroot/cgi-bin/awstats.pl -config=www.srv.world -update > /dev/null
/usr/share/awstats/wwwroot/cgi-bin/awstats.pl -config=www.srv.world -output -staticlink > /usr/share/awstats/wwwroot/index.html

exit 0
[2] 「http://(サーバーのホスト名またはIPアドレス/)/report/index.html」にアクセスすると、 以下のような画面が表示されApacheのログを見ることができます。
( 「http://(サーバーのホスト名またはIPアドレス/)/awstats/awstats.pl」の方だとフレーム付きで閲覧できます )
関連コンテンツ