環(huán)境介紹
awstats下載地址:
操作系統(tǒng):Centos 6.* ( 雙核4G辜荠、硬盤至少20G)
awstats 版本:awstats-7.6.tar.gz
IP:192.168.1.180
nginx
一:準(zhǔn)備
1.1)修改nginx.conf的日志格式无蜂,不然awstats無法分析。
vim /usr/local/nginx/conf/nginx.conf
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"'
access_log logs/access.log access;
1.2)重啟或重新加載nginx的配置文件
/etc/init.d/nginx restart 或 service nginx reload
1.3:自動(dòng)切割nginx 日志
vim /opt/nginx_log.sh
#!/bin/bash
#
# Filename: nginxCutLog.sh
# Author: Qicheng
# Website: http://www.linuxidc.com/
# Description: 切割nginx日志
# Notes: 設(shè)置crontab伦泥,每天23點(diǎn)59分定時(shí)執(zhí)行
#
ROOT_UID=0
if [ "$UID" -ne "$ROOT_UID" ];then
echo "Error: 必須以root用戶運(yùn)行此程序!"
exit 1
fi
nginx_logs_dir="/usr/local/nginx/logs"
nginx_pid_file="/usr/local/nginx/logs/nginx.pid"
# 切割后的日志文件名锦溪,例如access_20141022.log
nginx_log_today="$nginx_logs_dir/access_`date +%Y%m%d`.log"
[ -f "$nginx_log_today" ] && exit 1
mv $nginx_logs_dir/access.log $nginx_log_today
# 給nginx發(fā)送USR1信號不脯,使重新打開新的access.log日志文件
[ -f $nginx_pid_file ] && /bin/kill -USR1 $(cat $nginx_pid_file)
1.4)計(jì)劃任務(wù)
59 23 * * * /bin/bash /opt/nginx_log.sh
二:Awstats安裝
2.1) 解壓awstats包兒
tar -zxf awstats-7.6.tar.gz -C /usr/local
2.2)重命名
mv awstats-7.6 awstats
2.3)修改屬主、屬組權(quán)限
chown root:root awstats
2.4)新建文件夾
mkdir -p /var/lib/awstats
三:Awstats配置
3.1)執(zhí)行配置腳本awstats_configure.pl
cd /usr/local/awstats/tools/
./awstats_configure.pl
3.2)修改配置文件
vim /etc/awstats/awstats.www.test.com.conf
LogFile="/var/log/nginx/access_%YYYY-24%MM-24%DD-24.log"
注:修改成后刻诊,這里日期格式“%YYYY-24%MM-24%DD-24”防楷,是指24小時(shí)之前的年月日,也就是昨天的日期则涯。而執(zhí)行下條命令會(huì)報(bào)錯(cuò)复局,因?yàn)閚ginx是當(dāng)天裝的所以沒有昨天的日志
在此去掉了24小時(shí)
LogFile="/usr/local/nginx/logs/access_%YYYY%MM%DD.log"
3.3)測試
/usr/local/awstats/wwwroot/cgi-bin/awstats.pl -update -config=www.test.com
四:配置awstats生成靜態(tài)頁面
4.1)利用awstats的工具將統(tǒng)計(jì)的結(jié)果生成靜態(tài)文件:
mkdir -p /var/www/awstats
/usr/local/awstats/tools/awstats_buildstaticpages.pl -update -config=www.test.com -lang=cn -dir=/var/www/awstats -awstatsprog=/usr/local/awstats/wwwroot/cgi-bin/awstats.pl
4.2)要把a(bǔ)wstats統(tǒng)計(jì)結(jié)果頁面進(jìn)行密碼保護(hù),這里需要用到apache自帶的工具h(yuǎn)tpasswd:
yum -y install httpd-tools
htpasswd -cd admin.pass admin
4.3)把生成的密碼文件admin.pass放到nginx主配置目錄下
mv admin.pass /usr/local/nginx/conf/
4.4)nginx配置擴(kuò)展目錄下新建awstats.conf配置文件
vim /usr/local/nginx/conf/conf.d/awstats.conf
server {
listen 83;
server_name localhost;
location ~ ^/awstats/ { # html 靜態(tài)頁面目錄
root /var/www;
index index.html;
access_log off;
error_log off;
charset gb2312;
auth_basic "admin";
auth_basic_user_file admin.pass;
}
location ~ ^/icon/ { # 圖標(biāo)目錄
root /usr/local/awstats/wwwroot;
index index.html;
access_log off;
error_log off;
}
}
4.5:重啟nginx服務(wù)使上述生效
/etc/init.d/nginx restart
五:Web訪問
http://www.test.com:83/awstats/awstats.www.test.com.html
六:awstats 進(jìn)行多站點(diǎn)日志分析
6.1)執(zhí)行配置腳本awstats_configure.pl
cd /usr/local/awstats/tools
./awstats_configure.pl
6.2)修改配置文件
vim /etc/awstats/awstats.www.test.com.conf
LogFile="/usr/local/nginx/logs/access_%YYYY%MM%DD.log"
6.3)測試
/usr/local/awstats/wwwroot/cgi-bin/awstats.pl -update -config=www.wff.com
6.4)配置awstats生成靜態(tài)頁面
/usr/local/awstats/tools/awstats_buildstaticpages.pl -update -config=www.wff.com -lang=cn -dir=/var/www/awstats -awstatsprog=/usr/local/awstats/wwwroot/cgi-bin/awstats.pl
6.5)重啟nginx
service nginx restart
Web訪問
http://192.168.1.180:83/awstats/awstats.www.wff.com.html