1、实现上传文件功能 scp?-r?-P?33030?/usr/local/nginx/logs/access_120_2014-09-26.log 2、实现下载文件功能 ?scp?-r?-P?33030??/opt 3、SSH实现scp命令无需输入密码实现 ????1)本地机器先生成公...
分类:
系统相关 时间:
2014-09-26 20:18:19
阅读次数:
246
七、Nginx日志及日志分割(1)Nginx日志文件查看Nginx配置文件:找到access_log,yum安装默认存储在/var/log/nginx目录下,且默认main格式:main格式定义:log_format main '$remote_addr - $remote_user [$time_...
分类:
其他好文 时间:
2014-09-18 12:58:53
阅读次数:
152
Shell判断文件是否存在 #!/bin/sh#shell判断文件,目录是否存在或者具有权限myPath="/var/log/httpd/"myFile="/var /log/httpd/access.log" # 这里的-x 参数判断$myPath是否存在并且是否具有可执行权限if [ ! -x ...
分类:
其他好文 时间:
2014-09-14 12:50:47
阅读次数:
136
今天重新调整了下配置文件,之前的apache_errorlog未匹配到clientip。1.首先修改shipper.confinput{
file{
type=>"apache-accesslog"
path=>"/var/log/httpd/access_log"
}
file{
type=>"apache-errorlog"
path=>"/var/log/httpd/error_log"
}
}
filter{
if[type..
分类:
其他好文 时间:
2014-09-12 17:24:04
阅读次数:
786
linux指定从某个ip访问某个主机或网络测试机A上有3个ip分别为eth0192.168.1.34eth0:1192.168.1.36eth1192.168.1.35首先在测试机B上开机apacheaccess_logtail-f/etc/httpd/logs/access_log接着在测试机A上访问B,可以看到192.168.1.34--[26/Aug/2014:02:54:24+0800]"GET/HTTP/1.1..
分类:
系统相关 时间:
2014-09-05 16:25:22
阅读次数:
262
线上遇到的一个case,应用结构是nginx----->resin---java,其中nginx做lb,resin做为java的容器。在nginx层面做httpcode的监控,发现有4xx比例高的的报警:分析nginx日志,发现是由于499比例高导致xxxxxxxx-[29/Oct/2012:04:10:03+0800]"GET/GetConfiguration.jsp?peer_vers..
分类:
数据库 时间:
2014-09-03 02:42:56
阅读次数:
281
#!/usr/bin/env python#!-*-coding=utf-8-*-import refp=open("/home/xyt/桌面/erp_access.log","r")str=fp.readline()while str: str=fp.readline() ...
分类:
其他好文 时间:
2014-08-16 13:43:30
阅读次数:
260
在不关闭apache服务的情况下清理日志。#cat/dev/null>access_log#cat/dev/null>error_log#cat/dev/null>mod_jk.log还未测试效果,仅供参考。
分类:
其他好文 时间:
2014-08-08 02:12:15
阅读次数:
268
#自搭建了个人博客有需要交流学习的可以访问www.wpython.com#!/usr/bin/envpython
importdatetime,os,sys,shutil
log_path=‘/alidata/log/nginx/access/‘
log_file=‘www.wpython.com.log‘
yesterday=(datetime.datetime.now()-datetime.timedelta(days=1))
try:
os.makedir..
分类:
编程语言 时间:
2014-08-07 07:32:10
阅读次数:
267
vi /etc/squid/squid.conf cache_mem 64 MB
cache_dir ufs /var/spool/squid 1000 16 256
cache_effective_user squid
cache_effective_group squid
dns_nameservers 8.8.8.8
cache_access_log /var/log/squid/ac...
分类:
其他好文 时间:
2014-08-06 12:03:21
阅读次数:
267