码迷,mamicode.com
首页 > Web开发 > 详细

Apache服务AWStats分析系统

时间:2015-10-19 02:00:58      阅读:255      评论:0      收藏:0      [点我收藏+]

标签:awstats监控系统部署

         一、Apache部署AWStats分析系统

  1. 搭建AWStats系统(所用软件awstats-7.0.zip )

解压

unzip awstats-7.0.zip 

移动到httpd的安装目录下

mv awstats-7.0 /usr/local/awstats


cd /usr/local/awstats/tools/ 

chmod +x awstats_configure.pl 

./awstats_configure.pl 


2.建立统计站点的配置文件

Do you want me to setup Apache to write ‘combined‘ log files [y/N] ? y  选择Y

Do you want me to build a new AWStats config/profile

file (required if first install) [y/N] ? y   选择Y

Your web site, virtual server or profile name:

> www.localhost.com      输入监听的域名

Directory path to store config file(s) (Enter for default):

>   直接回车


3.修改站点统计配置文件

vim /etc/awstats/awstats.www.localhost.com.conf 

51 LogFile="/usr/local/httpd/logs/access_log"

203 DirData="/var/lib/awstats"

mkdir -p /var/lib/awstats


4.执行日志分析 设置cron计划任务

[root@localhost tools]# chmod +x awstats_updateall.pl 

[root@localhost tools]# ./awstats_updateall.pl 

crontab -e    设置计划任务

*/5 * * * * /usr/local/awstats/tools/awstats_updateall.pl  每5分钟执行一次

[root@localhost tools]# /etc/init.d/crond start

[root@localhost tools]# chkconfig --level 35 crond on


5.访问awstats

http://192.168.116.111/awstats/awstats.pl?config=www.localhost.com

没有搭建dns 想通过域名访问

vim /etc/hosts

192.168.116.111   www.localhost.com

或者访问 http://www.localhost.com/awstats/awstats.pl?config=www.localhost.com

访问成功!!!

本文出自 “浅笑习惯囿你” 博客,谢绝转载!

Apache服务AWStats分析系统

标签:awstats监控系统部署

原文地址:http://1339329314.blog.51cto.com/10122825/1704038

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!