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、網站化,建一個如下頁面,然后用域名或者啥練習方式打開這個頁面