设为首页 收藏本站
查看: 2527|回复: 0

[经验分享] Awstats 安装(nginx)

[复制链接]
累计签到:1 天
连续签到:1 天
发表于 2014-12-4 09:56:40 | 显示全部楼层 |阅读模式
Awstats是一个免费非常简洁而且强大有个性的网站日志分析工具,昨天领导问最近网站访问情况,虽然用了各种命令把日志统计出来了,但是非常麻烦,以前只是在apache上安装过awstats,没有在nginx上安装过,为了更省事,今天只好在nginx上安装awstats了

安装awstats前要准备php环境
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
[iyunv@localhost ~]# tar xvf awstats-7.2.tar.gz

[iyunv@localhost ~]# mv awstats-7.2 /usr/local/awstats

[iyunv@localhost ~]# chown -R root:root /usr/local/awstats
[iyunv@localhost ~]# chmod -R =rwX /usr/local/awstats
[iyunv@localhost ~]# chmod +x /usr/local/awstats/tools/*.pl
[iyunv@localhost ~]# chmod +x /usr/local/awstats/wwwroot/cgi-bin/*.pl

[iyunv@localhost ~]# cd /usr/local/awstats/tools/

[iyunv@localhost tools]# ./awstats_configure.pl    //开始配置


----- AWStats awstats_configure 1.0 (build 1.9) (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 files\apache group\apache\conf\httpd.conf
Config file path ('none' to skip web server setup):
> none  //这里用的是nginx,所以选择none

Your web server config file(s) could not be found.
You will need to setup your web server manually to declare AWStats
script as a CGI, if you want to build reports dynamically.
See AWStats setup documentation (file docs/index.html)

-----> 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:
> web       //基于域名

-----> 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.web.conf'
Config file /etc/awstats/awstats.web.conf created.

-----> 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=web
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.web.conf
You should have a look inside to check and change manually main parameters.
You can then manually update your statistics for 'web' with command:
> perl awstats.pl -update -config=web
You can also build static report pages for 'web' with command:
> perl awstats.pl -output=pagetype -config=web

Press ENTER to finish...

[iyunv@localhost web]# vim /etc/awstats/awstats.web.conf
LogFile="/data/www/logs/web/web.access_%YYYY%MM%DD-24.log"  //指定日志文件,这里设置的是昨天的所以-24,日志名:web.access_20141202.log  
SiteDomain="域名" //域名全部 www.tiger.com
DirData="/usr/local/awstats"    //指定awstats安装位置

//日志分析后会存放到指定位置,nginx这用的是静态文件,apache是通过cgi程序读取统计结果数据库输出
[iyunv@localhost web]# /usr/local/awstats/tools/awstats_buildstaticpages.pl -update  -config=web -lang=cn -dir=/usr/local/awstats/html/web/

-update 更新
-config=web  awstats.pl会去读取-config中的参数,把web扩展成 awstats.web.conf
-dir=    指定静态文件位置

nginx配置文件如下:
server {
        listen       80;
        server_name  log1.tiger.com;
        root /usr/local/awstats/html;
        autoindex on;  //目录显示
         charset gb2312;
        access_log  /data/www/logs/log.access.log;
        error_log   /data/www/logs/log.error.log;
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
        location / {
        }
                location ~ ^/icon/ {             # 图标目录  
                root   /usr/local/awstats/wwwroot;  
                index  index.html;  
                access_log off;
                charset gb2312;  
         }  
        location ~ \.php$ {
                fastcgi_pass   127.0.0.1:9000;
                fastcgi_index  index.php;
                fastcgi_param  SCRIPT_FILENAME   $document_root$fastcgi_script_name;
                include        fastcgi_params;
        }
    }
最后可以将生成静态文件设置成定时脚本!



运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-35572-1-1.html 上篇帖子: Awk报告生成器 下篇帖子: 开源日志收集系统Scribe 参数说明
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表