<返回更多

centos安装awstats分析apache的日志

2019-11-07    
加入收藏

1、下载:http://www.awstats.org/,下载最新版tar.gz即可,可以ftp上传。也可以用wget下载

2、解压安装:

tar zxvf awstats-x.x.tar.gz -C /opt/ //解压至/opt目录下

mv /opt/awstats-x.x /usr/local/awstats //移动文件至/usr/local/awstats目录下

cd /usr/local/awstats/tools //进入awstats的tools目录下

注意上边的版本号,根据你自己下载的情况来

3、配置:命令

chmod +x awstats_configure.pl

./awstats_configure.pl

4、具体配置操作如下,注意注释的地方就是要配置的地方

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

Enter full config file path of your Web server.

Example: /etc/httpd/httpd.conf

Example: /usr/local/Apache2/conf/httpd.conf

Example: c:Program filesapache groupapacheconfhttpd.conf

Config file path ('none' to skip web server setup):

/etc/httpd/conf/httpd.conf #输入Apache的配置文件绝对路径

-----> Check and complete web server config file '/etc/httpd/conf/httpd.conf'

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 '' 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 #输入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.test.com #输入网站域名:www.test.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.test.com.conf'

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

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

Stopping httpd: [ OK ]

Starting httpd: [ OK ]

-----> 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.test.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.test.com.conf

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

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

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

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

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

Press ENTER to finish... #直接“回车键”退出

5、检查httpd.conf是否更改了,看是否有如下代码

Options None

AllowOverride None

Order Allow,deny

Allow from all

6、修改主站配置文件

创建/var/lib/awstats目录

然后修改主站配置文件

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

......

LogFile="/var/log/httpd/access_log" //50行,修改web日志文件位置

DirData="/var/lib/awstats" //220行,数据目录,awstats 默认不存在(需要创建)

......

7、重启apache

8、crond服务设置计划性任务

crontab -e

* * * * * /usr/local/awstats/tools/awstats_updateall.pl now //每分钟更新一次数据

通过以下网站进行访问awstats日志分析系统:
http://www.xxx.com/awstats/awstats.pl?config=www.xxx.com

9、网站化,建一个如下页面,然后用域名或者啥练习方式打开这个页面

centos安装awstats分析apache的日志

 


centos安装awstats分析apache的日志

 

声明:本站部分内容来自互联网,如有版权侵犯或其他问题请与我们联系,我们将立即删除或处理。
▍相关推荐
更多资讯 >>>