Awstats 安装(nginx)

Awstats是一个免费非常简洁而且强大有个性的网站日志分析工具,昨天领导问最近网站访问情况,虽然用了各种命令把日志统计出来了,但是非常麻烦,以前只是在apache上安装过awstats,没有在nginx上安装过,为了更省事,今天只好在nginx上安装awstats了

安装awstats前要准备php环境

[[email protected] ~]# tar xvf awstats-7.2.tar.gz 

[[email protected] ~]# mv awstats-7.2 /usr/local/awstats

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

[[email protected] ~]# cd /usr/local/awstats/tools/

[[email protected] 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...

[[email protected] 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程序读取统计结果数据库输出
[[email protected] 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;
        }
    }
最后可以将生成静态文件设置成定时脚本!
时间: 2024-10-08 05:12:59

Awstats 安装(nginx)的相关文章

nginx awstats 安装配置和日志分析

1.Nginx安装目录:/usr/local/nginx Nginx配置文件存放目录:/usr/local/nginx/conf/nginx.conf Nginx日志目录:/usr/local/nginx/logs Awstats安装目录:/usr/local/awstats Awstats配置文件存放目录:/etc/awstats 日志切割脚本存放目录:/usr/local/nginx/nginx_log.sh 2.Nginx日志切割 修改nginx.conf配置文件,使AWSTATS支持分析

nginx+awstats安装过程

awstats来来回回也装了好多遍了,每次都是现装现查,隐约的记得整个配置比较麻烦,中间有几个需要特别注意的地方,又记不得那些需要特殊对待,只能边找资料边回忆,最终还是搞出来了,在此分享给大家. 首先去官网下载最新的安装包. wget http://jaist.dl.sourceforge.net/project/awstats/AWStats/7.3/awstats-7.3.zip unzip awstats-7.3.zip cd awstats-7.3 查看下配置结构 [[email pro

烂泥:利用awstats分析nginx日志

昨天把nginx的日志进行了切割,关于如何切割nginx日志,可以查看<烂泥:切割nginx日志>这篇文章. 今天打算分析下nginx日志,要分析nginx日志,我们可以通过shell脚本和第三方软件awstats进行分析,在此我们选择的是通过第三方软件awstats进行分析. 要使用awstats分析nginx日志,我们要安装awstats,而在安装awstats之前,我们需要先来介绍下awstats是什么? 一.awstats是什么 awstats是一个免费非常简洁而且强大有个性的基于Pe

使用awstats分析nginx日志

1.awstats介绍 本文主要是记录centos6.5下安装配置awstats,并统计nginx访问日志 1.1 awstats介绍 awstats是一款日志统计工具,它使用Perl语言编写,可统计的日志类型包括appache,nginx,ftp,mail等,awstats对nginx日志统计非常详细,如统计项 按参观时间:  按月历史统计   按日期统计   按星期   每小时浏览次数 按参观者:  国家或地区   城市   IP   最近参观日期   无法反解译的IP地址   搜索引擎网站

AWStats分析Nginx访问日志

AWStats是在Sourceforge上发展很快的一个基于Perl的WEB日志分析工具. 它可以统计您站点的如下信息: 访问量(UV),访问次数,页面浏览量(PV),点击数,数据流量等 精确到每月.每日.每小时的数据 访问者国家 访问者IP Robots/Spiders的统计 访客持续时间 对不同Files type的统计信息 Pages-URL的统计 访客操作系统浏览器等信息 其它信息(搜索关键字等等) 下面是AWStats分析Nginx日志的操作步骤: 一.配置nginx日志格式 修改ng

编译安装Nginx

############## 安装OpenSSL ######################wget https://www.openssl.org/source/openssl-1.0.2l.tar.gztar zxvf openssl-1.0.2l.tar.gzcd openssl-1.0.2l/./config --prefix=/opt/local/openssl :make && sudo make install ################ 安装PCRE #######

centos7编译安装nginx

linux及nginx版本 CentOS Linux release 7.2.1511 nginx-1.11.9 第一步安装依赖包 [[email protected] ~]# yum -y install pcre pcre-devel gcc openssl openssl-devel 第二步创建nginx用户 [[email protected] ~]# useradd nginx -s /sbin/nologin -M 第三部进入下载的nginx目录下编译 [[email protect

配置LANMP环境(5)-- 安装NGINX与配置

安装nginx yum install nginx 若提示找不到nginx,则在软件源中添加nginx的软件源文件: vim /etc/yum.repos.d/nginx.repo 添加如下内容: [nginx] name=nginx repo baseurl=http://nginx.org/packages/mainline/centos/7/$basearch/ gpgcheck=0 enabled=1 在根目录中创建data文件夹,在data文件夹中创建nginx文件夹,里面放置ngin

CentOS下安装Nginx

1 nginx安装环境 nginx是C语言开发,建议在linux上运行,本教程使用Centos6.5作为安装环境.  gcc 安装nginx需要先将官网下载的源码进行编译,编译依赖gcc环境,如果没有gcc环境,需要安装gcc:yum install gcc-c++  PCRE PCRE(Perl Compatible Regular Expressions)是一个Perl库,包括 perl 兼容的正则表达式库.nginx的http模块使用pcre来解析正则表达式,所以需要在linux上安装pc