本文主要是介绍[转]用 awstats分析 Nginx 日志的一些记录,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
原文地址:http://www.linuxbyte.org/yong-awstats-fen-xi-nginx-ri-zhi-de-yi-xie-ji-lu.html
系统环境为Cenots+Nginx 详细请阅读之前的日志《Centos yum 安装nginx+PHP-FPM+eAccelerator+mysql 》。
Awstats 是目前最流行的日志分析工具,它提供比第三方日志更方便更详实的日志分析。
系统默认Nginx 版本为 1.0.0,日志格式 Awstats 可以直接识别,并且由logrotate 做了日志回滚,每日对日志进行截断。为了得到更准确的分析结果并且尽量少占用系统资源,我每天在凌晨分析上一天的日志,并将结果输出为纯静态文件。由于 logrotate 压缩了旧日志所以要修改logrotate 设置不压缩就日志。
修改vi /etc/logrotate.d/nginx
/var/log/nginx/*log {dailyrotate 10 #保留10天的日志missingoknotifemptynocompress #就是这里默认是compress压缩日志sharedscriptspostrotate[ ! -f /var/run/nginx.pid ] || kill -USR1 `cat /var/run/nginx.pid`endscript }
下载安装Awstats
wgethttp:// prdownloads.sourceforge.net/ awstats/ awstats-7.0 -1 .noarch.rpm rpm -ivhawstats-7.0 -1 .noarch.rpm
配置
cd/ usr/ local/ awstats/ tools perlawstats_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/profile file (required if first install) [y/N] ? y #这里选Y-----> Define config file name to create What is the name of your web site or profile analysis ? Example: www.mysite.com Example: demo Your 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/ awstats cp/ 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 分析日志,因为这个时候是服务器最空闲的时段。
这篇关于[转]用 awstats分析 Nginx 日志的一些记录的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!