1.用Nginx做Web服务器,如果没有处理好日志,日志文件可能会很恐怖~10G、20G。可以修改nginx.conf 找到access_log: access_log /dev/null; error_log /dev/null; 这样全部把他们丢到系统的黑洞里了。不用每时每刻都往系统磁盘疯...
分类:
其他好文 时间:
2015-03-13 20:43:28
阅读次数:
91
root@debian:~/Workspace# awk ' { if(match($7,"/*\.php*")) { if(index($7,"?")) { print substr($7,0,index($7,"?")) } else { print $7; } } } ' access.log...
分类:
Web程序 时间:
2015-03-10 16:59:17
阅读次数:
130
一、下载,复制到自定义的虚拟主机目录下虚拟主机配置文件如下<VirtualHost*:80>
DocumentRoot"/www/cacti"
ServerNamecacti.a.com
ErrorLog"/var/log/httpd/cacti.a.com-error_log"
CustomLog"/var/log/httpd/cacti.a.com-access_log"common
<Directory"/www/cacti"&..
分类:
其他好文 时间:
2015-03-07 06:22:46
阅读次数:
167
1.linux组成kernel、shell、工具程序有sh.bash一个例子!#/bin/bashecho ''执行之前chmod +x执行./2.一个小窍门 cp /dev/null /var/log/apache2/access.log 利用/dev/null来晴空apache2中的日志文件注释...
分类:
系统相关 时间:
2015-03-03 06:19:43
阅读次数:
300
日志分析随意的tail一个access_log文件,下面是一条经典的访问记录218.19.140.242 – - [10/Dec/2010:09:31:17 +0800] “GET /query/trendxml/district/todayreturn/month/2009-12-14/2010-...
分类:
系统相关 时间:
2015-03-02 10:51:17
阅读次数:
139
server { listen 80; root /var/www/xxx; server_name www.xxx.com; access_log /var/log/www/xxx.log main; error_log /var/log/www/xxx_error.log; locati...
分类:
其他好文 时间:
2015-02-13 14:46:50
阅读次数:
102
shell判断文件,目录是否存在或者具有权限#!/bin/sh myPath="/var/log/httpd/" myFile="/var /log/httpd/access.log" #这里的-x 参数判断$myPath是否存在并且是否具有可执行权限 if [ ! -x "$myP...
分类:
系统相关 时间:
2015-02-04 12:52:32
阅读次数:
130
一、访问日志信息
当浏览器请求服务器时,如果在服务器上设置了访问日志,就会记录下用户的访问记录。
例如我访问本地apache所产生的一条默认的日志:
127.0.0.1 - - [03/Feb/2015:23:14:24 +0800] "GET / HTTP/1.1" 200 2
分为7个部分
(1)第一项信息是远程主机的地址,即它表明访问网站的究竟是谁。(可以要求apach...
分类:
数据库 时间:
2015-02-04 09:27:42
阅读次数:
275
作者:zhanhailiang 日期:2015-02-01
nginx proxy_pass配置透传hd域的动态请求到wapi域下:
server {
listen 80;
server_name hd.coalaawork.com;
access_log logs/hd.coalaawork.com.access.log;
root...
分类:
其他好文 时间:
2015-02-02 00:46:29
阅读次数:
1818
查看nginx日志 tail -f **/nginx/access.log,发现?频繁出现"GET /core/modify/index HTTP/1.0" 499 0 "-" 查看日志,跟踪modify/index接口,发现该接口运行时间超过了60s,肯定是程序某个地方卡住了 查看php慢查...
分类:
数据库 时间:
2015-01-28 13:13:40
阅读次数:
235