wget http://nchc.dl.sourceforge.net/sourceforge/awstats/awstats-6.9.tar.gz
tar zxvf awstats-6.9.tar.gz
mv awstats-6.9/ /usr/local/
cd /usr/local/awstats-6.9/tools/
./awstats_configure.pl
Do you want to continue setup from this NON standard directory [yN] ?
y
Config file path ('none' to skip web server setup):
>none
file (required if first install) [y/N] ?
y
Example: demo
Your web site, virtual server or profile name:
>test.openx.cn
-----> Define config file path
In which directory do you plan to store your config file(s) ?
Default: /etc/awstats
Directory path to store config file(s) (Enter for default):
>Enter(安默认的,配置文件保存在/etc/awstats)
vim /etc/awstats/awstats.test.openx.cn.conf
替换下面配置:
LogFile="/home/wwwlogs/access_%YYYY-24%MM-24%DD-24.log"
三,开始分析、生成结果
最后,可以执行分析了。
使用这个命令:
/usr/local/awstats-6.9/tools/wwwroot/cgi-bin/awstats.pl -update -config=test.openx.cn
这个命令会把结果生成到/var/lib/awstats 目录下 awstatsXXXX.www.XXXX.com.txt文件。
当然这样看起来不太方便,可以再用下面的命令来生成html页面,更加直观。
/usr/local/awstats-6.9/tools/awstats_buildstaticpages.pl -update -config=test.openx.cn -lang=cn -dir=/data/awstats -awstatsprog=/usr/local/awstats-6.9/wwwroot/cgi-bin/awstats.pl
/usr/local/awstats-6.9/tools/awstats_buildstaticpages.pl -update \
-config=www.xxxxoke.com -lang=cn \
-dir=/html/awstats \
-awstatsprog=/usr/local/awstats-6.9/tools/wwwroot/cgi-bin/awstats.pl
这样就会在/html/awstats目录下生成很直观的分析结果页。
四,自动化
要是每天都去服务器上运行几条命令肯定是件令人烦燥的事情,幸亏Linux的世界里有crontab,
下面是从网友那找的 crontab
1 0 * * * sh /home/zyf/sh/cut_nginx_log.sh
0 1 * * * /usr/local/awstats-6.9/wwwroot/cgi-bin/awstats.pl -update -config=www.xxxxke.com
0 2 * * * /usr/local/awstats-6.9/tools/awstats_buildstaticpages.pl -update -config=www.xxxxke.com -lang=cn -dir=/html/awstats -awstatsprog=/usr/local/awstats-6.9/tools/wwwroot/cgi-bin/awstats.pl
LogFile="/home/wwwlogs/access_%YYYY-24%MM-24%DD-24.log"
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
centos + nginx + awstats
原创
©著作权归作者所有:来自51CTO博客作者wx59e2f041219d8的原创作品,请联系作者获取转载授权,否则将追究法律责任
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
使用awstats分析nginx日志
少 IP 在访问、PV 数是多少、哪个 URL 访问量最大、用户使用最多的
awstats nginx .net apache -
nginx 支持perl 搭建 awstats
nginx支持perl安装配置awstats,分析web日志
日志分析 perl nginx awstats