码迷,mamicode.com
首页 >  
搜索关键字:access_log    ( 608个结果
按项目时间段,爬虫对状态码进行统计
#!/bin/bashread-p"whichsitedoyouwanttoAnalysis,xxx|xxx:"siteread-p"whichsitedoyouwanttoAnalysis,xxx.access.log.x:"logread-p"whichsitedoyouwanttoAnalysis,YisouSpider|Sogouwebspider|Baiduspider:"spiderread-p"whichcodewouldyouwanttoAnalysis,499|500|502|200|301..
分类:其他好文   时间:2015-06-24 16:41:58    阅读次数:96
nginx图片上传失败
最近做一个微网站,图片上传出现问题。有时能上传图片,有时上传失败。代码测试了好几遍,也是没问题的。后来查看nginx日志access.log,发现了413问题,说明上传的图片太大了。解决办法是:nginx.conf配置client_max_body_size,我的配置里默认为2M,上传的图片超过这个大小就..
分类:Web程序   时间:2015-06-23 15:59:58    阅读次数:165
bash切割nginx日志
split.sh#!/bin/bashlog_dir="/dev/shm/"date_file=`date+%g%m%d%H%M`/bin/mv ${log_dir}/nginx_access.log${log_dir}/${date_file}.trn[!-f /var/run/nginx.pid]||kill-USR1`cat/var/run/nginx.pid`/jobs/pusher/logtosql.sh${log_dir}/${date_file}.trn/bin/mv${log_dir}/${d..
分类:其他好文   时间:2015-06-18 20:16:36    阅读次数:143
python的Nginx切割脚本
#!/usr/bin/envpython #date:2015-06 #Author:ley #Curthenginx‘saccess_log #-*-coding:UTF-8-*- importos,time path=[‘/var/log/nginx/‘,‘/var/run/nginx/nginx.pid‘,‘access.log‘] time=time.strftime(‘%Y-%m-%d‘) command="cd%s&&/bin/cp%s%s&&/bin/kil..
分类:编程语言   时间:2015-06-16 01:26:05    阅读次数:141
sed截取连接数升高时的慢日志
sed-n‘/15:32:30/,/16:12:09/p‘access_log>log.txtsed截取某段时间,并重定向到一个新文件
分类:其他好文   时间:2015-06-12 15:10:47    阅读次数:131
对nginx的日志进行分割的shell脚本
#!/bin/bashlogs_path="/opt/nginx/logs/"pid_path="/opt/nginx/logs/nginx.pid"mv${logs_path}access.log${logs_path}access_$(date-d"yesterday"+"%Y%m%d").logkill-USR1`cat${pid_path}`crontab-e0000***sh/opt/shell/cutnginx.sh该脚本不能执行可能原因:脚本没有X权限在非r..
分类:系统相关   时间:2015-06-11 23:11:37    阅读次数:165
删除Ngnix 日志
删除Ngnix日志的脚本#!/bin/bash#初始化LOGS_PATH=$(pwd)/logsYESTERDAY=$(date -d "yesterday" +%Y-%m-%d)#按天切割日志mv ${LOGS_PATH}/access_log ${LOGS_PATH}/access_${YEST...
分类:其他好文   时间:2015-06-11 18:59:37    阅读次数:159
Apache滚动日志配置
Apache日志记录,记录以备后查,部份摘抄自Apache中文手册,翻译金步国一个典型的记录格式如下:LogFormat "%h %l %u %t \"%r\" %>s %b" commonCustomLog logs/access_log common它定义了一种特定的记录格式字符串,并给它起了个...
分类:Web程序   时间:2015-06-09 13:40:20    阅读次数:134
Web学习-apache视图log刊物
视图apache刊物apache日志位置不同的系统位置不同。widnows假如是windows的话,xampp下应该是都存在的,直接去找apache的folder/log/access.log | error.log下的文件就好了Ubuntu和Mac这个是要找apache的位置的,能够尝试用wher...
分类:Web程序   时间:2015-06-08 19:10:09    阅读次数:159
统计web訪问前10的ip
cat access.log|awk '{print $0}'|sort|uniq -c|sort -nr|head -n 10
分类:Web程序   时间:2015-06-05 19:30:59    阅读次数:108
608条   上一页 1 ... 48 49 50 51 52 ... 61 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!