Linux系统 awstats日志分析小结

awststs是一个非常好用的日记统计器材,下面我对其他重要Web Server/proxy(nginx,squid,lighttpd,httpd)的日记怎样举办说明睁开阐发。
awstats设置批改最小的条件阐发怎样怎样举办批改,渴望对有必要的朋侪可以或许供给赞助。

awstats日记说明之apache
apache:
批改%apache%/conf/httpd.conf
批改为:
CustomLog logs/access_log combined
awstats:
awstats.xxx.conf
LogFile="%apache%/logs/access_log"即可
LogType=W
LogFormat=1


awstats日记说明之tomcat
批改%tomcat%/conf/server.xml
<!--
<Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
prefix="localhost_access_log." suffix=".txt" pattern="common" resolveHosts="false"/>
-->
批改为:
<Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
prefix="localhost_access_log." suffix=".log" pattern="combined" fileDateFormat="yyyy-MM-dd" resolveHosts="false"/>
awstats.xxx.conf
LogFile="%tomcat%/logs/access_log.%yyyy%mm%dd.log"即可
LogType=W
LogFormat=1

awstats日记说明之nginx
批改:%nginx%/conf/nginx.conf


#log_format main '$remote_addr - $remote_user [$time_local] $request '
# '"$status" $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';

#access_log logs/access.log main;
批改为:
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" $http_x_forwarded_for';

access_log logs/access.log main;
awstats.xxx.conf
LogFile="%nginx%/logs/access.log."即可
LogType=W
LogFormat=1


awstats日记说明之squid
批改:%squid%/etc/squid.conf

access_log /usr/local/opt/squid//var/logs/access.log squid
批改为:

logformat combined %>a %ui %un [%tl] "%rm %ru HTTP/%rv" %Hs %<st "%{Referer}>h" "%{User-Agent}>h" %Ss:%Sh
access_log /usr/local/opt/squid/var/logs/access.log combined
LogFile="%squid%/var/log/access.log."即可
LogType=W
LogFormat=1

awstats日记说明之lighttpd
awstats直接支持lighttpd默认的日记输出技俩。

你可能感兴趣的:(linux,日记,的)