一、题目1、Linux挂载Winodws共享文件夹2、查看http的并发请求数及其TCP连接状态:3、用tcpdump嗅探80端口的访问看看谁最高4、统计/var/log/下文件个数5、查看当前系统每IP连接数6、shell下32位随机密码生成7、统计出apache的access.log中访问量最多的5个IP8、如何查看二进制文..
分类:
系统相关 时间:
2014-06-16 17:05:49
阅读次数:
329
现在需要分析访问日志,怎么办?比如分析D:\Servers\Apache2.2\logs\access2014-05-22.loghttp://my.oschina.net/cart/针对这个问题特意开发了一款小工具分析Apache
日志,拆分字段成CSV文件并插入Mysql数据库分析<?php$d...
分类:
数据库 时间:
2014-05-26 21:24:45
阅读次数:
357
1. shell判断文件,目录是否存在或者具有权限 2. #!/bin/sh 3. 4.
myPath="/var/log/httpd/" 5. myFile="/var /log/httpd/access.log" 6. 7. # 这里的-x
参数判断$myPath是否存在并且是否具有可执行权限 ...
分类:
其他好文 时间:
2014-05-17 19:23:57
阅读次数:
267
#!/bin/bash
#function:cutnginxlogfilesshell
#cp/usr/local/nginx/logs/access.log/usr/local/nginx/logs/access.log.bak
log_cut_path="/var/log/nginx"
log_files_path="/usr/local/nginx/logs/"
log_files_dir=${log_cut_path}$(date-d"yesterday"+"%Y")/$(date-d"yesterd..
分类:
其他好文 时间:
2014-05-15 18:49:50
阅读次数:
244
全局安装forevernpm install -g forever 查看帮助forever
-h查看安装位置whereis forever编写自己的sh文件 forever -p web文件路径 -l 路径/access.log -e
路径/error.log -o 路径/out.log -a --...
分类:
Web程序 时间:
2014-05-11 15:28:31
阅读次数:
315
使用shell判断系统时区if[[!`grep-aCST-8/etc/localtime`]];then
rm-rf/etc/localtime
ln-s/usr/share/zoneinfo/Asia/Shanghai/etc/localtime
fiNginx日志切割脚本#!/bin/bash
logs_path="/alidata/server/log/nginx/"
mv${logs_path}access.log${logs_path}access_$(date-d"ye..
分类:
系统相关 时间:
2014-05-08 16:41:18
阅读次数:
403
文件名:gencdr.py
作用:在指定的时间里每秒向testcdr.txt文件中写N行记录,N为随机数。模拟access.log。 # -*- coding: utf-8 -*- """
zhangbo2012 http://www.cnblogs.com/zhangbo2012/"""impor...
分类:
编程语言 时间:
2014-05-01 11:35:02
阅读次数:
473
可以通过man
test来查看文档,下面的文章转自http://m.blog.csdn.net/blog/yuanjungogogo/9222875#!/bin/shmyPath="/var/log/httpd/"myFile="/var
/log/httpd/access.log"# 这里的-x ...
分类:
其他好文 时间:
2014-04-29 09:27:45
阅读次数:
446