Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux教程 >> Sarg安裝配置使用教程

Sarg安裝配置使用教程

日期:2017/2/7 14:34:29      編輯:Linux教程
 

SARG的全稱是:Squid Analysis Report Generator
SARG作為一款Squid日志分析工具,它采用html格式,詳細列出了每一位用戶訪問internet的站點信息,時間占用信息,排名,連接次數,訪問量,訪問量等。

安裝 SARG (以 sarg-2.3.1. 為例)

wget http://prdownloads.sourceforge.net/sarg/sarg-2.3.1.tar.gz
tar -zxvf sarg-2.3.1.tar.gz
cd sarg-2.3.1

./configure
make
make install

建立 SARG 報表目錄

mkdir /var/www/html/sarg ##我的web根目錄是/var/www/html

設定 SARG

vi /usr/local/sarg/sarg.conf ##sarg安裝目錄

access_log /var/log/squid/access.log
output_dir /var/www/html/sarg
resolve_ip yes
overwrite_report yes

設定每小時更新報表數據

vi /etc/cron.hourly/sarg

#!/bin/sh

/usr/bin/sarg > /dev/null 2>&1

chmod a+x /etc/cron.hourly/sarg

選擇性的其它相關設定

編輯 /etc/hosts IP hostname 對照表, 例如:

192.168.18.10 Mary
192.168.18.11 Jack
192.168.18.12 David
.
.
.

設定每日 23:59 清除 Proxy Cache

vi /etc/squid/squid.freshcache

#!/bin/sh

/usr/bin/sarg
sleep 5s
sync
service squid stop
sleep 5s
true > /var/log/squid/access.log
true > /var/log/squid/cache.log
true > /var/log/squid/store.log
true > /var/log/squid/squid.out
sleep 5s
sync
rm -rf /var/spool/squid/*
sleep 5s
sync
service squid start

chmod a+x /etc/squid/squid.freshcache

vi /etc/crontab

59 23 * * * root /etc/squid/squid.freshcache

Copyright © Windows教程網 All Rights Reserved