Awstats nginx 安装

来源:互联网 发布:ipad怎样卸载软件 编辑:程序博客网 时间:2024/05/22 09:41
系统默认Nginx 版本为 1.0.0,日志格式 Awstats 可以直接识别,并且由logrotate 做了日志回滚,每日对日志进行截断。为了得到更准确的分析结果并且尽量少占用系统资源,我每天在凌晨分析上一天的日志,并将结果输出为纯静态文件。由于logrotate 压缩了旧日志所以要修改logrotate 设置不压缩就日志。
修改vi /etc/logrotate.d/nginx

/var/log/nginx/*log {    daily    rotate 10 #保留10天的日志    missingok    notifempty    nocompress #就是这里默认是compress压缩日志    sharedscripts    postrotate        [ ! -f /var/run/nginx.pid ] || kill -USR1 `cat /var/run/nginx.pid`    endscript}

下载安装Awstats

wget http://prdownloads.sourceforge.net/awstats/awstats-7.0-1.noarch.rpmrpm -ivh awstats-7.0-1.noarch.rpm

配置

cd /usr/local/awstats/toolsperl awstats_configure.pl

由于我们的web服务器是Nginx 所以 Check for web server install 我们选 none

-----> Need to create a new config file ?Do you want me to build a new AWStats config/profilefile (required if first install) [y/N] ? y #这里选Y -----> Define config file name to createWhat is the name of your web site or profile analysis ?Example: www.mysite.comExample: demoYour web site, virtual server or profile name:> www.linuxbyte.org #输入你要统计的网站的域名

编辑/etc/awstats/awstats.www.linuxbyte.org.conf
修改 LogFile 段加入网站日志的路径。

LogFile="/var/log/nginx/www.linuxbyte.org.access.log.1"

生成份分析结果的静态文件

cd /data/web/linuxbyte.org/awstatscp /usr/local/awstats/wwwroot/icon/ ./ -rf /usr/local/awstats/tools/awstats_buildstaticpages.pl -config=www.linuxbyte.org -lang=cn -dir=/web/linuxbyte/awstats -update

自此你可以访问http://www.linuxbyte.org/awstats/awstats.www.linuxbyte.org.html 来查看分析结果。

设置crontable

30 4 * * */usr/local/awstats/tools/awstats_buildstaticpages.pl -config=www.linuxbyte.org -lang=cn -dir=/web/linuxbyte/awstats -update

每天凌晨 4:30 分析日志,因为这个时候是服务器最空闲的时段。

原创粉丝点击