1、安装并启动apache
yum install -y https
service httpd restart
2、官网下载安装包。
3、安装
安装编译环境
[root@xiaoqi ~]# yum install -y gcc*
解压安装包
[root@xiaoqi ~]# tar -xf webalizer-2.23-08-src.tgz
进入安装目录
[root@xiaoqi ~]# cd webalizer-2.23-08/
安装并指定安装目录(安装过程可能会报错,根据报错安装指定的编译环境即可。)
[root@xiaoqi webalizer-2.23-08]# ./configure --prefix=/usr/webalizer
[root@xiaoqi webalizer-2.23-08]# make && make install
3、启动
创建分析结果输出目录
mkdir /var/www/html/webalizer
将模板配置文件,复制一份以.conf结尾
cp /usr/webalizer/etc/webalizer.conf.sample /usr/webalizer/etc/webalizer.conf
编辑配置文件
[root@xiaoqi html]# vim /usr/webalizer/etc/webalizer.conf
LogFile /var/log/httpd/access_log #指定要分析的日志
OutputDir /var/www/html/webalizer #指定分析结果输出目录
启动webalizer(-c表示指定配置文件启动)
/usr/webalizer/bin/webalizer -c /usr/webalizer/etc/webalizer.conf
多访问几次网站。进行分析