Fedora 14
Sponsored Link

Apache アクセスログ解析 - Visitors2010/11/06

  アクセスログ解析ツール Visitors をインストールします。

[1] Visitors インストール
[root@www03 ~]#
yum -y install graphviz


[root@www03 ~]#
wget wget http://www.hping.org/visitors/visitors-0.7.tar.gz


[root@www03 ~]#
tar zxvf visitors-0.7.tar.gz

[root@www03 ~]#
cd visitors_0.7

[root@www03 visitors_0.7]#
make

[root@www03 visitors_0.7]#
cp visitors /usr/local/bin/

[root@www03 visitors_0.7]#
[root@www03 ~]#
mkdir /var/www/html/visitors

[root@www03 ~]#
vi /etc/httpd/conf.d/visitors.conf


# 新規作成

<Location /visitors>
    Order deny,allow
    Deny from all
    Allow from 10.0.0.0/24
# アクセス許可IP

</Location>


[root@www03 ~]#
/etc/rc.d/init.d/httpd restart

Stopping httpd:
[  OK  ]

Starting httpd:
[  OK  ]


# レポート出力

[root@www03 ~]#
visitors -A /var/log/httpd/access_log -o html > /var/www/html/visitors/index.html

--
56 lines processed in 1 seconds
0 invalid lines, 0 blacklisted referers

# ページ巡回レポート出力

[root@www03 ~]#
visitors -A -m 30 /var/log/httpd/access_log -o html --trails --prefix http://www03.srv.world > /var/www/html/visitors/trails.html

--
56 lines processed in 1 seconds
0 invalid lines, 0 blacklisted referers

# ページ巡回画像出力

[root@www03 ~]#
visitors /var/log/httpd/access_log --prefix http://www03.srv.world -V > /var/www/html/visitors/graph.dot

--
56 lines processed in 1 seconds
0 invalid lines, 0 blacklisted referers
[root@www03 ~]#
dot -Tpng /var/www/html/visitors/graph.dot > /var/www/html/visitors/graph.png
  「http://(サーバーのホスト名またはIPアドレス/)/visitors/」にアクセスすると、以下のような画面が表示されApacheのログを見ることができます。
関連コンテンツ