pv一般都是统计指定页面的点击量,这里用首页来计算grep"/index.php"/var/log/nginx/access.log|wc-luv是统计指定页面上真是访问的用户,也就是说同一ip不管点击多少次都算一个uvgrep"/index.php"/var/log/nginx/access.log|awk‘{print$1}‘|sort|uniq|wc–l独立ip是统计不管用?.
分类:
其他好文 时间:
2015-09-24 19:47:36
阅读次数:
378
今天发现图片验证码,老是验证不对;验证码图片是<img src="http://验证码系统"/>调用验证码系统生成; 结果看了nginx日志access.log 出现不少同一时间,请求了2次图片验证码,而且请求ip和agent不一样; 情况基本...
分类:
其他好文 时间:
2015-09-23 21:19:53
阅读次数:
281
nginx 日志相关指令主要有两条,一条是log_format,用来设置日志格式,另外一条是access_log,用来指定日志文件的存放路径、格式和缓存大小,通俗的理解就是先用log_format来定义自己想用的日志格式,然后在用zccess_log定义虚拟主机时或全局日志时 在把定义的log_fo...
分类:
其他好文 时间:
2015-09-19 13:52:07
阅读次数:
170
统计访问最多的ip1.tail -n 10000 xxaccess_log | cut -d " " -f 1 |sort|uniq -c|sort -rn|head -10 |more2.tail -n 10000 xx-access_log | awk '{print $1}'|sort|uni...
分类:
数据库 时间:
2015-09-17 17:27:47
阅读次数:
199
#!/usr/bin/envputhon
importpexpect
importsys
#定义目标主机
r_ip="IP_ADDRSS"
r_user="USERNAME"
r_passwd="PASSWORD"
#定义目标主机nginx日志文件
target_file="/path/to/nginx_access.log"
#运行ssh命令
child=pexpect.spawn(‘/usr/bin/ssh‘,[r_user+‘@‘+r_ip])
#输入..
分类:
其他好文 时间:
2015-09-13 20:04:41
阅读次数:
282
1、把IP数量直接输出显示:cat access_log_2011_06_26.log |awk '{print $1}'|uniq -c|wc -l2、把IP数量输出到文本显示:cat access_log_2011_06_26.log |awk '{print $1}'|uniq -c|wc -...
分类:
Web程序 时间:
2015-09-08 20:02:56
阅读次数:
235
1.取访问前10的ip地址cataccess.log|awk‘{print$1}’|sort|uniq-c|sort-nr|head-10cataccess.log|awk‘{counts[$(11)]+=1};END{for(urlincounts)printcounts[url],url}’2.访问次数最多的文件或页面,比如获取前10cataccess.log|awk‘{print$11}’|sort|uniq-c|sort-nr|head-10..
分类:
Web程序 时间:
2015-09-05 23:55:14
阅读次数:
326
日志对于统计排错来说非常有利的。本文总结了nginx日志相关的配置如access_log、log_format、open_log_file_cache、log_not_found、log_subrequest、rewrite_log、error_log。nginx有一个非常灵活的日志记录模式。每个级...
分类:
其他好文 时间:
2015-09-04 22:22:20
阅读次数:
264
#!/bin/bash
cutfile1="access_log"
cutfile2="error_log"
#keepdays=31
cd /etc/httpd/logs/
tar zcvf ${cutfile1}_$(date +"%Y%m%d" --date="-1 day").tar.gz ${cutfile1}
tar zcvf ${cutfile2}_$(date +"%...
分类:
Web程序 时间:
2015-08-28 13:31:54
阅读次数:
195
server { listen 80; server_name www.gaov.com; #access_log logs/www.gaov.com.access.log main; location / { index index.html index.htm index.php; root /...
分类:
Web程序 时间:
2015-08-28 00:34:34
阅读次数:
410