在tomcat的access中打印出请求的情况可以帮助我们分析问题,通常比较关注的有访问IP.线程号.访问url.返回状态码.访问时间.持续时间. 最近在跟一个图片请求超时的问题,需要在项目的access log中增加请求的响应时间参数.正好学习一下tomcat access log中参数的配置. 最好的还是官方文档,以下摘自tomcat7文档. Introduction The Access Log Valve creates log files in the same format as t
#!/bin/bash nginx_root=/www/server/nginx log_path=/www/wwwlogs yesterday=`date -d "-1 day" +%Y%m%d` mkdir $log_path/$yesterday #移动日志到新位置 cd $log_path for name in `ls *.log` do mv $name $log_path/$yesterday/$name done #删除60天之前的日志 find . -type d -