环境:win7 + iis7 + perl(ActivePerl-5.20.1.2000) + awstats 7.3

一、找到iis日志所在目录

建议全部都打勾

二、安装perl

AWStats是perl语言书写的程序,所以必选先安装ActivePerl程序。

1、下载http://www.activestate.com/activeperl/downloads

2、安装

记住perl的安装路径,后面会用到

三、配置awstats

1、下载awstats

http://sourceforge.net/projects/awstats/,最新版为7.3

2、解压到文件夹

3、配置iis站点

站点配置到wwwroot文件夹

Iis站点 >> 功能视图 >> 处理程序映射,添加对pl文件后缀名的解析

在弹出的对话框,点击否

Internet信息服务(IIS)管理器 >> 点击左侧的计算机名  >> ISAPI 和 CGI限制  >>  设置允许

1、配置

找到wwwroot/cgi-bin/awstats.model.conf,把model改为需要统计站点的host,比如www.mysite.com,即awstats.www.mysite.com.conf,主要说明配置如下:

LogFile:日志文件的位置(ex%YY-24%MM-24%DD-24 为过去24小时格式)

LogFile="C:/WINDOWS/system32/LogFiles/W3SVC1/ex%YY-24%MM-24%DD-24.log"

LogType:日志类型(W-web log; M-mail log; F-ftp log)

LogType=W

LogFormat:日志格式(1-Apache or Lotus Notes日志格式; 2-IIS日志格式)

LogFormat="date time cs-method cs-uri-stem cs-username c-ip cs-version cs(User-Agent) cs(Referer) sc-status sc-bytes"

*注意:IIS6.0 不能用LogFormat=2的格式,具体设置参看上一行的例子

SiteDomain:统计站点(必须设置)

SiteDomain="www.mySite.com"

DefaultFile:网站的默认页面

DefaultFile="index.html"

Logo="corplogo.jpg"

LogoLink="http://www.mySite.com"

*logo必须是在icon/other目录下

StyleSheet:样式表所在位置

StyleSheet="/css/awstats_default.css"

HTMLHeadSection="<center><h1>这个是网页头</h1></center>"

HTMLEndSection="<center><h1>这个是网页尾</h1></center>"

*可以书写html代码

Include:包含另外一个conf文件

Include "awstats.public.conf"

说明:先继承另外一个conf文件的设置(比如一个公共的设置),该文件的设置覆盖所继承的文件的设置。主要方便多个站点的统计。在公共设置中设置好统计的选项,其他的配置文件只需要修改日志位置(LogFile)、统计站点的名称(SiteDomain)就可以了。

参考“http://blog.chinaunix.net/uid-15811445-id-150005.html

2、使用命令行开始统计

> cd D:/awstats-7.3/wwwroot/cgi-bin/

> awstats.pl -config=awstats.www.mysite.com.conf -update

3、测试效果  localhost:port/cgi-bin/awstats.pl?config=www.mysite.com

4、批量分析历史文件

制作pl1文件

Function Awstats

{

param ($Dir = $(Read-host "请输入iis日志文件所在目录")),

($Website = $(Read-Host "站点名(配置名)"))

$TargetFolder = $Dir

if (Test-Path $TargetFolder)

{

Write-host "DIREKTORIJ JE :" $TargetFolder -foregroundcolor "Red"

$Files = get-childitem $Dir\*.* -include *.log

$List = $Files | where {$_.extension -eq ".log"}

#write-host $List

foreach ($File in $Files)

{

write-host "Updating statistics" -foregroundcolor "Red";&'C:\perl\bin\perl.exe' awstats.pl config=$Website logfile=$File}

}

}

Awstats

完成后,把pl文件存放到awstat\wwwroot\cgi-bin目录下,记得在powershell中运行 >> .pl

问题1:

awstats-6.5/wwwroot/cgi-bin/awstats.pl -update -config=ipcn.org

Update for config "/etc/awstats/awstats.ipcn.org.conf"

With data in log file "/opt/squid/logs/access.log.20060507.ip2"...

Phase 1 : First bypass old records, searching new record...

Direct access to last remembered record has fallen on another record.

So searching new records from beginning of log file...

Jumped lines in file: 0

Parsed lines in file: 92378

Found 92378 dropped records,

Found 0 corrupted records,

Found 0 old records,

Found 0 new qualified records.

始终跳过,在官网查找了知道,在命令后加入“-showdropped -showcorrupted”,看到

我设置的网站域名和实际统计站点的域名不一样,我勒个去,所以这里强烈建议大家配置站点名和配置文件名使用实际域名。

官网解释:

Dropped records are records discarded because they were not "user HTTP requests" or were requests matching AWStats filters (See the SkipHostsSkipUserAgentsSkipFilesOnlyHostsOnlyUserAgents and OnlyFiles parameters). If you want to see which lines were dropped, you can add the -showdropped option on the command line. Corrupted records are records that do not match the log format defined by the "LogFormat" parameter in the AWStats configuration file. All web servers will typically have a few corrupted records (<5%) even when everything works correctly. This can result for several reasons: 1) Web server internal bugs, 2) bad requests made by buggy browsers, 3) a dirty web server shutdown, such as unplugging the server...   If all of your lines are corrupted and the LogFormat parameter in AWStats configuration file is correct, then there may be a setup problem with your web server log format. Don't forget that your LogFormat parameter in the AWStats configuration file MUST match the log file format you analyze.  If you want to see which lines are corrupted, you can add the -showcorrupted option on the command line. Old records are simply records that were already processed by a previous update session. Although it is not necessary to purge your log file after each update process, it is highly recommended that you do so as often as possible. New records are records in your log file that were successfully used to build/update the statistics database. Note: A log analysis process might be slow (one second for each 4500 lines of your logfile with an Athlon 1Ghz, plus DNS resolution time for each different IP address in your logfile if DNSLookup is set to 1 and not already done in your log file).  See the Benchmarks page for more detailed information.

http://awstats.sourceforge.net/docs/awstats_setup.html

问题2:Flush history file on disk (unique url reach flush limit of 5000)

awstats.pl文件将每隔发现5千个新链接改为5万个;

> $LIMITFLUSH=5000; # Nb of records in data arrays after how we need to flush data on disk

附1:http://www.internetofficer.com/awstats/log-format/

使用awstats分析iis站点的日志的更多相关文章

  1. 在CentOS 6上使用 AWStats 分析 httpd 和 Tomcat 日志

    准备工作: Awstats 是由perl语言编写的,所以要首先准备好awstats的运行环境.# yum install –y perl*   Apache 一.首先,要安装apache服务器,并且启 ...

  2. 使用 awstats 分析 Nginx 的访问日志(IBM)

    前言 在我的上一篇文章<使用 Nginx 提升网站访问速度>中介绍了 Nginx 这个 HTTP 服务器以及如何通过它来加速网站的访问速度.在实际的网站运营中,我们经常需要了解到网站的访问 ...

  3. Awstats分析Nginx日志

    1.nginx日志格式设定 log_format access '$remote_addr - $remote_user [$time_local] "$request" ' '$ ...

  4. windows下安装awstats来分析apache的访问日志

    一.啰嗦两句 之前在Windows下用Apache时,也曾经配置过Awstats,然后换了工作,改用Linux+nginx,渐渐把Apache忘记了.又换了工作,又得用Apache,这回版本更新到2. ...

  5. 使用awstats分析nginx日志

    1.awstats介绍 本文主要是记录centos6.5下安装配置awstats,并统计nginx访问日志 1.1 awstats介绍 awstats是一款日志统计工具,它使用Perl语言编写,可统计 ...

  6. 烂泥:利用awstats分析nginx日志

    本文由ilanniweb提供友情赞助,首发于烂泥行天下 想要获得更多的文章,可以关注我的微信ilanniweb 昨天把nginx的日志进行了切割,关于如何切割nginx日志,可以查看<烂泥:切割 ...

  7. 网站运维工具使用iis日志分析工具分析iis日志(iis日志的配置)

    我们只能通过各种系统日志来分析网站的运行状况,对于部署在IIS上的网站来说,IIS日志提供了最有价值的信息,我们可以通过它来分析网站的响应情况,来判断网站是否有性能问题,或者存在哪些需要改进的地方 对 ...

  8. Log Parser Studio 分析 IIS 日志

    Log Parser Studio 分析 IIS 日志 来源 https://www.cnblogs.com/lonelyxmas/p/8671336.html 软件下载地址: Log Parser ...

  9. IIS Web服务器日志、日志服务器分析

    IIS Web服务器日志.日志服务器分析 EventLog Analyzer是一款全面的工具,用于审计.管理和跟踪您的Microsoft Internet Information Services(I ...

随机推荐

  1. [golang学习] 在idea中code & debug

    [已废弃]不需要看 idea 虽然审美倒退了n年. 不过功能还是相当好用的. idea 的go插件堪称最好的go ide. 1. 语法高亮支持 2. 智能提示 3. 跳转定义(反跳转回来) 4. 集成 ...

  2. 看完《Don't make me think》的总结

    寒假在公司实习,然后公司人数比较少,作为一个前端实习生,分工下,就去负责了项目的业务逻辑的梳理以及页面的设计,为了让页面设计的好看,交互性好,便于用户使用,我就快速看了这本薄薄的却很有用的书.书的整体 ...

  3. SQL Server 表和索引存储结构

    在上一篇文章中,我们介绍了SQL Server数据文件的页面类型,系统通过96个字节的头部信息和系统表从逻辑层面上将表的存储结构管理起来,具体到表的存储结构上,SQL Server引入对象.分区.堆或 ...

  4. double数值多时系统默认科学计数法解决方法

    比如 Double d = new Double("1234567890.12"); System.out.println("d:="+d); java.tex ...

  5. JD轮播图代码

    <!DOCTYPE html>   <html>   <head>   <title>jd网站的轮播图效果</title>   <me ...

  6. 【Android Api 翻译4】android api 完整翻译之Contacts Provider (学习安卓必知的api,中英文对照)

    Contacts Provider 电话簿(注:联系人,联络人.通信录)提供者 ------------------------------- QUICKVIEW 快速概览 * Android's r ...

  7. Java中transient有何作用?

    transient关键字用来防止序列化域.如果一个引用类型被transient修饰,则其反序列化的结果是null.基本类型则为0.如果引用类型时不可序列化的类,则也应该使用transient修饰,它在 ...

  8. iOS - UI - UISwitch

    UISwitch //开关    不用设置宽高  有默认宽高 UISwitch * sw = [[UISwitch alloc] initWithFrame:CGRectMake(100, 100,  ...

  9. Linux公社资料库地址

    免费下载地址在 http://linux.linuxidc.com/用户名与密码都是http://www.linuxidc.com

  10. IO输入输出

    编写TextRw.java的Java应用程序,程序完成的功能是:首先向TextRw.txt中写入自己的学号和姓名,读取TextRw.txt中信息并将其显示在屏幕上. package com.hanqi ...