转载自:http://blog.eood.cn/nginx_logsNginx 日志对于大部分人来说是个未被发掘的宝藏,总结之前做某日志分析系统的经验,和大家分享一下 Nginx 日志的纯手工分析方式。Nginx 日志相关配置有 2 个地方:access_log 和 log_format 。默认的格...
分类:
其他好文 时间:
2015-07-28 12:45:17
阅读次数:
99
统计访问频次最高的10个ip:cat /var/log/httpd/access_log |awk '{print $1}'|sort|uniq -c|sort -nr|head -10统计恶意ip(结果为403的请求)cat /var/log/httpd/access_log|awk '{if($...
分类:
Web程序 时间:
2015-07-27 12:35:06
阅读次数:
138
打开 nginx.conf:[root@localhost ~]# cd /usr/local/nginx/conf[root@localhost conf]# vim nginx.conf在默认的 server 段中包含以下内容:#access_log logs/access.log main.....
分类:
其他好文 时间:
2015-07-26 15:31:03
阅读次数:
109
一、配置nginx日志 location /html/ { ??????? root? /home/web; ??????? index? index.html index.htm; ??????? access_log? /var/log/nginx/ad-access.log_pipe? ad_access; } ad_ac...
分类:
其他好文 时间:
2015-07-23 18:00:40
阅读次数:
130
1. shell判断文件,目录是否存在或者具有权限2. #!/bin/sh3.4. myPath="/var/log/httpd/"5. myFile="/var /log/httpd/access.log"6.7. # 这里的-x 参数判断$myPath是否存在并且是否具有可执行权限8. if [...
分类:
系统相关 时间:
2015-07-22 22:42:41
阅读次数:
149
有没有发现Apache生成的日志文件一天比一天大,不是一般大,若你apache安装在C盘,那可惨了,不几天硬盘就满了,太恐怖了,有没有办法优化一下日志,让它不那么大?答案是有的。一、停止Apache服务,删除Apache下/logs/目录中的error.log和access.log文件。二、打开Apache的con..
分类:
数据库 时间:
2015-07-15 23:15:08
阅读次数:
350
tomcat 记录 访问者 ip log4j日志
在tomcat 目录 server.xml里面 加入
prefix="localhost_access_log." suffix=".txt" pattern="common" resolveHosts="false"/>
搞定,记下来。...
分类:
其他好文 时间:
2015-07-10 15:24:38
阅读次数:
114
liunx 删除删除文件夹实例: rm -rf /var/log/httpd/access 将会删除/var/log/httpd/access目录以及其下所有文件、文件夹 2 删除文件使用实例: rm -f /var/log/httpd/access.log 将会强制删除/var/log/httpd...
分类:
系统相关 时间:
2015-07-06 19:44:40
阅读次数:
162
修改apache主配置文件469#Virtualhosts470Includeconf/extra/httpd-vhosts.conf将470行的注释去掉<VirtualHost192.168.0.3:80>ServerAdminAdmin@mnt.comDocumentRoot"/home/mnt"ServerNamewww.mnt.comErrorLog"logs/mnt.com-error_log"CustomLog"logs/mnt.com-access_log..
分类:
Web程序 时间:
2015-06-30 18:37:52
阅读次数:
163
wamp这两天明显比以前访问要慢很多,重启了下,刚开始还有效,后来重启也没用,就在网上查了下原因,分享给需要的朋友。可能原因1、apache access.log文件过大 (本人就是用这个解决的) 解决方法:清空日志文件;日志路径:wamp\bin\apache\Apache2.4.4\logs\....
分类:
Web程序 时间:
2015-06-27 11:19:02
阅读次数:
161