Squid ログ解析ツール
|
Squid のログをHTML形式で見やすくできる Sarg というツールを導入します。 |
|
[1] | Sarg のインストールと設定 |
[root@lan ~]# yum --enablerepo=dag -y install sarg # DAGからインストール [root@lan ~]# vi /etc/httpd/conf.d/sarg.conf Alias /sarg /var/www/sarg <Directory /var/www/sarg> DirectoryIndex index.html Order deny,allow Deny from all # アクセス許可IP追記 Allow from 127.0.0.1 192.168.0. Allow from ::1 # Allow from your-workstation.com </Directory>[root@lan ~]# vi sarg.sh # 実行スクリプト作成
#!/bin/sh /usr/bin/sarg > /dev/null 2>&1 [root@lan ~]# chmod 755 sarg.sh [root@lan ~]# ./sarg.sh # 実行 [root@lan ~]# crontab -e # 毎日午前1時にログレポート出力 00 01 * * * /root/sarg.sh
|
[2] | クライアントでブラウザをたちあげて設定したページへアクセスすると、以下のようにレポートの画面を見ることができます。 |
Sponsored Link |
|