Awstats 설치 (nginx)
awstats 를 설치 하기 전에 phop 환경 을 준비 해 야 합 니 다.
[root@localhost ~]# tar xvf awstats-7.2.tar.gz
[root@localhost ~]# mv awstats-7.2 /usr/local/awstats
[root@localhost ~]# chown -R root:root /usr/local/awstats
[root@localhost ~]# chmod -R =rwX /usr/local/awstats
[root@localhost ~]# chmod +x /usr/local/awstats/tools/*.pl
[root@localhost ~]# chmod +x /usr/local/awstats/wwwroot/cgi-bin/*.pl
[root@localhost ~]# cd /usr/local/awstats/tools/
[root@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...
[root@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
[root@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;
}
}
!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
간단! Certbot을 사용하여 웹 사이트를 SSL(HTTPS)화하는 방법초보자가 인프라 주위를 정돈하는 것은 매우 어렵습니다. 이번은 사이트를 간단하게 SSL화(HTTP에서 HTTPS통신)로 변경하는 방법을 소개합니다! 이번에는 소프트웨어 시스템 Nginx CentOS7 의 환경에서 S...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.