hao0089 发表于 2015-9-16 13:09:04

[转]用 awstats分析 Nginx 日志的一些记录

  

简介:这是[转]用 awstats分析 Nginx 日志的一些记录的详细页面,介绍了和php,有关的知识、技巧、经验,和一些php源码等。
class='pingjiaF' frameborder='0' src='http://biancheng.dnbcw.info/pingjia.php?id=335087' scrolling='no'>  原文地址: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 {
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.rpm
rpm -ivh
awstats-7.0
-1
.noarch.rpm
  配置





cd
/
usr/
local/
awstats/
tools
perl
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/profile
file (required if first install) ? 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 分析日志,因为这个时候是服务器最空闲的时段。

爱J2EE关注Java迈克尔杰克逊视频站JSON在线工具
http://biancheng.dnbcw.info/php/335087.html pageNo:10
页: [1]
查看完整版本: [转]用 awstats分析 Nginx 日志的一些记录