Apache日志分析工具awstats配置

awstats软件下载地址:

http://www.awstats.org/#DOWNLOAD

https://awstats.sourceforge.io/#download

一、准备工作

1、一台Linux系统虚拟机或服务器,这里我使用的是CentOS7.3系统虚拟机

IP地址:192.168.115.120

域名:www. awstats.com

在CentOS7.3中执行下面的内容添加域名解析

echo “192.168.115.120  www. awstats.com” >>/etc/hosts

2、一台用来测试配置结果的window10客户端

IP地址和CentOS7.3在同一网段,同样Windows10的C:\Windows\System32\drivers\etc\hosts文件中也需要添加域名解析, 以记事本打开hosts文件,最后加上一行:192.168.115.120  www. awstats.com,保存退出。

二、安装Apache服务及相关配置

1、Apache快速编译安装

yum -y install gcc gcc-c++ make pcre-devel expat-devel perl

wget http://mirrors.tuna.tsinghua.edu.cn/apache//apr/apr-1.6.3.tar.gz

tar xf apr-1.6.3.tar.gz

cd apr-1.6.3

./configure

make && make install

cd ..

wget http://mirrors.tuna.tsinghua.edu.cn/apache//apr/apr-util-1.6.1.tar.gz

tar xf apr-util-1.6.1.tar.gz

cd apr-util-1.6.1

./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr

make && make install

cd ..

wget https://ftp.pcre.org/pub/pcre/pcre-8.34.tar.gz

tar xf pcre-8.34.tar.gz

cd pcre-8.34

./configure

make && make install

cd ..

wget http://www.zlib.net/fossils/zlib-1.2.11.tar.gz

tar xf zlib-1.2.11.tar.gz

cd zlib-1.2.11

./configure

make && make install

cd ..

wget  http://archive.apache.org/dist/httpd/httpd-2.4.7.tar.gz

tar xf httpd-2.4.7.tar.gz

cd httpd-2.4.7

./configure --prefix=/usr/local/apache2 --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util --enable-deflate --enable-expires --enable-headers --enable-modules=most --enable-so  --with-mpm=worker --enable-rewrite --enable-charset-lite --enable-cgid --enable-cgi

make && make install

cd ..

2、将Apache服务添加到系统服务并设置开机自启

cp /usr/local/apache2/bin/apachectl /etc/init.d/httpd

vim /etc/init.d/httpd  编辑此文件添加以下两行内容

#!/bin/sh

#chkconfig:35 80 25

#description:web server

chkconfig --add httpd    将httpd加入到service管理器

systemctl daemon-reload   重载系统系统管理器

systemctl enable httpd    设置httpd为开机自启

3、Apache其他配置

设置主机名

vim /usr/local/apache2/conf/httpd.conf

ServerName www.awstats.com:80

/usr/local/apache2/bin/apachectl start

优化执行路径(把Apache的执行程序文件做个软链接使其可以直接执行)

ln -s /usr/local/apache2/conf/httpd.conf /etc/httpd.conf

ln -s /usr/local/apache2/bin/* /usr/local/bin/

三、配置Awstats日志分析软件

1、查看是否加载和编译cgi模块

注意:awstats不支持分析分割日志,如果日志已分割,需修改回来

确认是否加载了cgi模块

[[email protected] ~]# apachectl -D DUMP_MODULES | grep cgi

确认是否编译过cgi模块

[[email protected] ~]# ls /usr/local/apache2/modules/|grep cgi

mod_cgid.so

mod_cgi.so

mod_proxy_fcgi.so

mod_proxy_scgi.so

通过查看发现这里没有加载cgi模块,但是编译过cgi模块

[[email protected] ~]# vim /usr/local/apache2/conf/httpd.conf   去掉cgi相关注释

LoadModule cgid_module modules/mod_cgid.so

LoadModule cgi_module modules/mod_cgi.so

2、下载并配置awstats软件

(1)下载awstats软件并解压

[[email protected] ~]# wget https://jaist.dl.sourceforge.net/project/awstats/AWStats/7.6/awstats-7.6.tar.gz

[[email protected] ~]# tar xf awstats-7.6.tar.gz

[[email protected] ~]# mv awstats-7.6 /usr/local/awstats

(2)编辑awstats配置脚本

[[email protected] ~]# cd /usr/local/awstats/tools/

[[email protected] tools]# ./awstats_configure.pl

----- AWStats awstats_configure 1.0 (build 20140126) (c) Laurent Destailleur -----

This tool will help you to configure AWStats to analyze statistics for

one web server. You can try to use it to let it do all that is possible

in AWStats setup, however following the step by step manual setup

documentation (docs/index.html) is often a better idea. Above all if:

- You are not an administrator user,

- You want to analyze downloaded log files without web server,

- You want to analyze mail or ftp log files instead of web log files,

- You need to analyze load balanced servers log files,

- You want to 'understand' all possible ways to use AWStats...

Read the AWStats documentation (docs/index.html).

-----> Running OS detected: Linux, BSD or Unix

-----> Check for web server install

Found Web server Apache config file '/usr/local/apache2/conf/httpd.conf'

-----> Check and complete web server config file '/usr/local/apache2/conf/httpd.conf'

Warning: You Apache config file contains directives to write 'common' log files

This means that some features can't work (os, browsers and keywords detection).

Do you want me to setup Apache to write 'combined' log files [y/N] ? y

Add 'Alias /awstatsclasses "/usr/local/awstats/wwwroot/classes/"'

Add 'Alias /awstatscss "/usr/local/awstats/wwwroot/css/"'

Add 'Alias /awstatsicons "/usr/local/awstats/wwwroot/icon/"'

Add 'ScriptAlias /awstats/ "/usr/local/awstats/wwwroot/cgi-bin/"'

Add '<Directory>' directive

AWStats directives added to Apache config file.

-----> Update model config file '/usr/local/awstats/wwwroot/cgi-bin/awstats.model.conf'

File awstats.model.conf updated.

-----> 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    创建新的配置文件

-----> 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.awstats.com      服务器域名

-----> 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):

>     这里直接回车

-----> Create config file '/etc/awstats/awstats.www.awstats.com.conf'

Config file /etc/awstats/awstats.www.awstats.com.conf created.

-----> Restart Web server with '/sbin/service httpd restart'

-----> Add update process inside a scheduler

Sorry, configure.pl does not support automatic add to cron yet.

You can do it manually by adding the following command to your cron:

/usr/local/awstats/wwwroot/cgi-bin/awstats.pl -update -config=www.awstats.com

Or if you have several config files and prefer having only one command:

/usr/local/awstats/tools/awstats_updateall.pl now

Press ENTER to continue...    继续按回车

A SIMPLE config file has been created: /etc/awstats/awstats.www.awstats.com.conf

You should have a look inside to check and change manually main parameters.

You can then manually update your statistics for 'www.awstats.com' with command:

> perl awstats.pl -update -config=www.awstats.com

You can also read your statistics for 'www.awstats.com' with URL:

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

记住这一段,之后会在浏览器使用这个地址

Press ENTER to finish...     继续按回车

(3)编辑awstats程序的主配置文件

[[email protected] ~]# vim /etc/awstats/awstats.www.awstats.com.conf

LogFile="/usr/local/apache2/logs/access_log"

DirData="/usr/local/awstats/awstats_data"

[[email protected] ~]# systemctl restart httpd

[[email protected] ~]# cd /usr/local/awstats/tools/

[[email protected] tools]# chmod +x awstats_updateall.pl

[[email protected] tools]# ./awstats_updateall.pl now   手动采集数据

(4)设置crond开机自启和定时任务,每5分钟采集一次数据

[[email protected] tools]# crontab -e

*/5 * * * * /usr/local/awstats/tools/awstats_updateall.pl now

[[email protected] ~]# systemctl enable crond

[[email protected] ~]# systemctl list-unit-files | grep crond

crond.service                               enabled

(5)httpd.conf中添加允许访问的权限

[[email protected] ~]# vim /etc/httpd.conf

<Directory "/usr/local/awstats/wwwroot">

Options None

AllowOverride None

Order allow,deny

Allow from all

Require all granted

</Directory>

[[email protected] ~]# systemctl restart httpd

四、在Windows的浏览器中进行测试

1、浏览器测试页面是否能正常访问

浏览器地址栏输入以下网址:http://192.168.115.120//awstats/awstats.pl?config=www.awstats.com会出现如下界面。

2、配置页面自动跳转优化统计页面访问

[[email protected] ~]# vim /usr/local/apache2/htdocs/index.html

<html>

<head>

<meta http-equiv=refresh content="0;url=http://192.168.115.120//awstats/awstats.pl?config=www.awstats.com">

</head>

<body></body>

</html>

上面跳转代码写好之后重启Apache服务

[[email protected] ~]# systemctl restart httpd

在Windows浏览器地址栏输入www.awstats.com,就会自动跳转到http://192.168.115.120//awstats/awstats.pl?config=www.awstats.com地址了。

好了,到这里我们的Apache日志分析工具awstats就已经配置完成了。

注意:服务器如果没做dns的话,必须服务器和客户端上都修改hosts文件

原文地址:http://blog.51cto.com/longlei/2106427

时间: 2024-10-26 02:04:56

Apache日志分析工具awstats配置的相关文章

project03日志分析工具AWStats

++++++++++++++++++++ 日志分析工具AWStats ++++++++++++++++++++ http://www.oschina.net/project http://www.oschina.net/project/tag/147/log-analyzer --统计日志分析工具 http://www.awstats.org/ --官方网站 http://www.nltechno.com/awstats/awstats.pl?config=destailleur.fr  --官

linux下搭建HTTP网站服务器和网站日志分析工具AWStats的使用

服务器IP地址:192.168.4.5 服务器主机名:srv5.tarena.com 1.在服务器端安装httpd软件包 [[email protected] /]# yum -y install httpd [[email protected] /]# service httpd start [[email protected] /]# chkconfig httpd on 2.在客户机端验证 在浏览器中输入192.168.4.5 如果显示欢迎页面表示服务器搭建成功 3.部署网页文档 首先将欢

AWStats日志分析工具

awstats官方网站:http://awstats.sourceforge.net/ perl官方网站:http://www.perl.com/ Awstats是一个非常简洁而且强大的统计工具.它可以统计您站点的如下信息: 一:访问量,访问次数,页面浏览量,点击数,数据流量等精确到每月.每日.每小时的数据二:访问者国家.访问者IP.操作系统.浏览器等三:Robots/Spiders的统计四:纺客持续时间五:对不同Files type 的统计信息六:Pages-URL的统计七:其它信息(搜索关键

Mysql 配置慢查询日志(SlowQueryLog)以及使用日志分析工具

[ 查看系统关于慢查询的设置 ] mysql> show variables like '%slow%'; +---------------------------+--------------------------------+ | Variable_name | Value | +---------------------------+--------------------------------+ | log_slow_admin_statements | OFF | | log_sl

Linux------------GoAccess-可视化WEB日志分析工具

目录 一.GoAccess简介 1.1 存储方式 1.2 编译配置参数 1.2 使用选项 1.21 日志/日期/时间 格式 1.22 用户交互选项 1.23 服务器选项 1.24 FILE OPTIONS 1.25 解析选项 1.26 地理位置选项 1.27 其他选项 1.28 磁盘存储选项 1.3 自定义日志/日期格式 1.31 自定义示例 1.4 使用示例 1.41 不同的输出 1.42多日志文件 1.43 实时 HTML 输出 1.44 日期处理 1.45 虚拟主机 1.46 文件 & 状

mysql慢查询日志分析工具使用

参考:  5种mysql日志分析工具比拼 http://blog.csdn.net/gzh0222/article/details/10384475 1.mysql-log-filter工具脚本使用说明: google code上找到的一个分析工具.提供了 python 和 php 两种可执行的脚本.http://code.google.com/p/mysql-log-filter/ (需要搬梯子爬墙),51cto下载链接: 使用方法:(这里只介绍python的使用方法) python mysq

【转】gc日志分析工具

性能测试排查定位问题,分析调优过程中,会遇到要分析gc日志,人肉分析gc日志有时比较困难,相关图形化或命令行工具可以有效地帮助辅助分析. Gc日志参数 通过在tomcat启动脚本中添加相关参数生成gc日志 -verbose.gc开关可显示GC的操作内容.打开它,可以显示最忙和最空闲收集行为发生的时间.收集前后的内存大小.收集需要的时间等. 打开-xx:+ printGCdetails开关,可以详细了解GC中的变化. 打开-XX: + PrintGCTimeStamps开关,可以了解这些垃圾收集发

GC之七--gc日志分析工具

性能测试排查定位问题,分析调优过程中,会遇到要分析gc日志,人肉分析gc日志有时比较困难,相关图形化或命令行工具可以有效地帮助辅助分析. Gc日志参数 通过在tomcat启动脚本中添加相关参数生成gc日志 -verbose.gc开关可显示GC的操作内容.打开它,可以显示最忙和最空闲收集行为发生的时间.收集前后的内存大小.收集需要的时间等. 打开-xx:+ printGCdetails开关,可以详细了解GC中的变化. 打开-XX: + PrintGCTimeStamps开关,可以了解这些垃圾收集发

Logwatch日志分析工具

介绍: Logwatch是使用 Perl 开发的一个日志分析工具. Logwatch能够对Linux 的日志文件进行分析,并自动发送mail给相关处理人员,可定制需求. Logwatch的mail功能是借助宿主系统自带的mail server 发邮件的,所以系统需安装mail server , 如sendmail,postfix,Qmail等 安装: redhat,centOS: yum -y install logwatch debian,ubuntu: apt-get install log