日志分析软件awstats的安装使用简易指南

呵呵,我都用了多年了,从单机到集群的,我都用它。
这玩意儿挺好使的。
一直用。
不过,能把ip换成手机号码来统计吗?还没研究过呢。
谁用过?


QUOTE:
原帖由 spiceboy 于 2006-8-8 03:01 发表
这玩意儿挺好使的。
一直用。
不过,能把ip换成手机号码来统计吗?还没研究过呢。
谁用过?

你是想统计wap啊,那也应该是可以的啊。
由于日志格式不正确,会出现:

[Copy to clipboard] [ - ]
CODE:
Your AWStats LogFormat parameter is:
1
This means each line in your web server log file need to have "combined log format" like this:
111.22.33.44 - - [10/Jan/2001:02:14:14 +0200] "GET / HTTP/1.1" 200 1234 "http://www.fromserver.com/from.htm" "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)"

如果在awstats.www.conf中
修改

[Copy to clipboard] [ - ]
CODE:
#LogFormat=1
LogFormat = "%virtualname %host %host_r %other %other %time1 %methodurl %code %bytesd %referer"

就会出现

[Copy to clipboard] [ - ]
CODE:
Your AWStats LogFormat parameter is:
%virtualname %host %host_r %other %other %time1 %methodurl %code %bytesd %referer
This means each line in your web server log file need to have the following personalized log format:
%virtualname %host %host_r %other %other %time1 %methodurl %code %bytesd %referer

我要修改awstats的日志格式,因该在哪修改?
谢谢!
我的都配起来了,但IE访问时打出如下日志:
Warning: Perl versions before 5.6 cannot handle nested includes
我perl -v
This is perl, v5.8.0 built for i386-linux-thread-multi
(with 1 registered patch, see perl -V for more detail)

Copyright 1987-2002, Larry Wall

Perl may be copied only under the terms of either the Artistic License or the
GNU General Public License, which may be found in the Perl 5 source kit.

Complete documentation for Perl, including FAQ lists, should be found on
this system using `man perl' or `perldoc perl'.  If you have access to the
Internet, point your browser at http://www.perl.com/, the Perl Home Page.

哪位遇到过,我该如何做?谢谢!
Webiase是一个基于JAVA的日志分析工具。Webiase的产品理念是Web BI Ease,在设计开发中始终强调简单易用,Webiase的优势在于:
•        界面友好:Webiase是完全基于Web应用的日志分析工具,浏览器直接调用完成所有系统功能
参考输出样例:http://www.webiase.com/sample
•        基于java:并且很好的解决了跨平台问题,系统本身可以运行在GNU/Linux上或Windows上;分析的日志直接支持Apache格式 (combined)和IIS格式(需要修改)。
Webiase完全可以实现用一套系统完成对自身站点不同WEB服务器:GNU/Linux/Apache和Windows/IIS服务器的统一统计。
•        效率比较高:Webiase输出统计项目丰富全面,日志分析速度可以达到7000条/秒左右,对于一个日访问量百万级的站点,这个速度都是足够的;
•        配置/定制方便:系统提供了足够灵活但缺省也很合理的配置规则,需要修改的缺省配置不超过3,4项就可以开始运行;
•        Webiase的设计是面向精确的"Human visits"设计的,因此很多搜索引擎的机器人访问都被过滤掉了,因此有可能比其他日志统计工具统计的数字要低,来自公司内部的访问也可以通过IP过滤设置过滤掉(暂不提供)。
•        可以生成超过30个以上的各种图表,并付带有多个3维统计图.,并且支持导出pdf、excel等各式报表。
日志统计系统在站点的用户行为分析中扮演了重要的角色,尤其是对于来自搜索引擎的关键词访问统计:是很有效的用户行为分析数据来源。

下载路径:http://www.webiase.com/download/Webiase-1.0beta-setup.exe
呵呵,才看出来,照楼主的方法,根就无法访问,你忘了把以/usr/local/awstats/tools里的http_conf里的内容加到apache的httpd.conf里了,所以,根本无法访问.
Alias /awstatsclasses "/usr/local/awstats/wwwroot/classes/"
Alias /awstatscss "/usr/local/awstats/wwwroot/css/"
Alias /awstatsicons "/usr/local/awstats/wwwroot/icon/"
ScriptAlias /awstats/ "/usr/local/awstats/wwwroot/cgi-bin/"

#
# This is to permit URL access to scripts/files in AWStats directory.
#
<Directory "/usr/local/awstats/wwwroot">
    Options None
    AllowOverride None
    Order allow,deny
    Allow from all
</Directory>
~
hoo7
圣骑士:::

你不用哪样配,你可以先装个cronlog把日志文件搞成一天一个的,格式如下:
access_log.%y-%m-%d 结果就是access_log.07-07-02   (两位月日年)
然后在awstats的配置文件里把LogFormat 改成:access_log.%YY-%MM-%DD就行了.
都这么久了,还有人看,感慨ing ~

考虑是不是把webtrends的经验心得跟大家共享一下。


QUOTE:
原帖由 HonestQiao 于 2006-8-7 17:12 发表
呵呵,我都用了多年了,从单机到集群的,我都用它。

能不能把你的配置给贴出来看看,我最近也要做一个日志分析的,是web集群,你是怎么做的,先把日志分割了,再合并,再分析的吗??