12 2016 档案

摘要:1.为了安全,使用nologin账号来运行程序, su -s /bin/bash -c "ls" www 这条命令到底做了什么呢?su -s 是指定shell,这里www用户是nologin用户,是没有默认的shell的,这里指定使用/bin/bash, -c 后面接需要运行的命令, 后面www是用 阅读全文
posted @ 2016-12-29 09:47 行知散人 阅读(4690) 评论(0) 推荐(0) 编辑
摘要:1xx Informational Request received, continuing process. This class of status code indicates a provisional response, consisting only of the Status-Line 阅读全文
posted @ 2016-12-28 11:22 行知散人 阅读(902) 评论(0) 推荐(0) 编辑
摘要:查找资料将http中缓存相关的知识记录下 一般来说:Last-Modifed和Expires是一对,ETag和Cache-Control是一对 Last-Modified ETag 由上面可以得知,Last-Modified、ETag这两种机制的运作模式几乎是一样的 再论Expires与Cache- 阅读全文
posted @ 2016-12-28 11:07 行知散人 阅读(207) 评论(0) 推荐(0) 编辑
摘要:http://linuxtools-rst.readthedocs.io/zh_CN/latest/tool/lsof.html 阅读全文
posted @ 2016-12-28 10:34 行知散人 阅读(182) 评论(0) 推荐(0) 编辑
摘要:iostat -x 1 10 Linux 2.6.18-92.el5xen 02/03/2009 avg-cpu: %user %nice %system %iowait %steal %idle 1.10 0.00 4.82 39.54 0.07 54.46 Device: rrqm/s wrqm 阅读全文
posted @ 2016-12-27 17:55 行知散人 阅读(211) 评论(0) 推荐(0) 编辑
摘要:1.使用hdparm命令 hdparm -Tt /dev/sda /dev/sda: Timing cached reads: 6676 MB in 2.00 seconds = 3340.18 MB/sec Timing buffered disk reads: 218 MB in 3.11 se 阅读全文
posted @ 2016-12-27 16:31 行知散人 阅读(350) 评论(0) 推荐(0) 编辑
摘要:最近zabbix监控公司一个网站经常报警,状态码000,监控的是个静态页面, 1.首先看返回的头信息,发现cache-control:no cache 有cdn,看配置因为业务需要没有配置缓存,导致每次都回源 2.命令测试 curl -s --connect-timeout 3 -m 5 -o /d 阅读全文
posted @ 2016-12-27 15:30 行知散人 阅读(339) 评论(0) 推荐(0) 编辑
摘要:1.shell处理两数相加时报错: req_all=$(($hits+$misses)) error: invalid arithmetic operator (error token is " 查询原因发现: hits=`$REDISCLI -h $IP -p $PORT info 2>&1 |g 阅读全文
posted @ 2016-12-26 15:25 行知散人 阅读(433) 评论(0) 推荐(0) 编辑
摘要:在python中,字典的输出内容跟json格式内容一样,但是字典的格式是字典,json的格式是字符串,所以在传输的时候(特别是网页)要转换使用。 r.text返回的是Unicode型的数据。 r.content返回的是bytes型的数据。 也就是说,如果你想取文本,可以通过r.text。 如果想取图 阅读全文
posted @ 2016-12-24 09:42 行知散人 阅读(339) 评论(0) 推荐(0) 编辑
摘要:awk 'BEGIN{ FS="|"} { ary[$14,NR]=$0} END{ nrw=asorti(ary, newary) for(i=1;i<=nrw;i++) print ary[newary[i]]}' test.log |tail -n 10 阅读全文
posted @ 2016-12-23 19:30 行知散人 阅读(4717) 评论(0) 推荐(0) 编辑
摘要:StartDBSyncers=12 如果proxy过多 可以适当加大这个参数 ProxyConfigFrequency=60ProxyDataFrequency=60 这两个参数很重要,一个是server 告诉proxy要监控哪些机器,一个是proxy传数据,ProxyConfigFrequency 阅读全文
posted @ 2016-12-20 22:13 行知散人 阅读(484) 评论(0) 推荐(0) 编辑
摘要:1.在监控客户机上 自动发现监控url中,url如果是带%的,原来的脚本会有问题,printf 输出的时候%会被解析 解决办法如下新修改的脚本 2.如果url 也就是自动一参数中带特殊字符的时候,是使用不了的 Allow all characters to be passed in argument 阅读全文
posted @ 2016-12-09 15:19 行知散人 阅读(5750) 评论(8) 推荐(1) 编辑