解决linux中Kipmi0进程对CPU使用率很高问题
摘要:kipmi is supposed to run with low priority. When you say it consumes 70-90% of the CPUs, is that constant (does it still consume the processor when th...
阅读全文
posted @
2015-09-14 15:03
凌度
阅读(1255)
推荐(0) 编辑
oracle的sqlldr并行导入表不要加索引
摘要:ORA-26002:Tablestringhas index defined upon it.Cause:Parallel load was specified into a table which has index defined upon it.Action:Drop index(es) de...
阅读全文
posted @
2015-09-11 10:27
凌度
阅读(1216)
推荐(0) 编辑
[nginx]lua操作redis
摘要:local redis = require "resty.redis" local red = redis:new() red:set_timeout(1000) -- 1 sec -- or connect ...
阅读全文
posted @
2015-09-09 10:20
凌度
阅读(2241)
推荐(0) 编辑
nginx收到空包问题
摘要:tcpdump有收包,但是nginx的access.log显示post数据为空 可以通过tcpdump监控端口 http://www.cnblogs.com/linn/p/4792468.html 修改配置 client_header_buffer_size large_client_header_
阅读全文
posted @
2015-09-09 10:12
凌度
阅读(579)
推荐(0) 编辑
tcpdump查看某个端口数据
摘要:tcpdump -i eth0 -nn -A port 10021tcpdump src 10.20.80.1 and port 10021
阅读全文
posted @
2015-09-08 17:49
凌度
阅读(13948)
推荐(0) 编辑
oracle完全删除表空间
摘要:步骤一: 删除userdrop user ×× cascade说明: 删除了user,只是删除了该user下的schema objects,是不会删除相应的tablespace的。步骤二: 删除tablespaceDROP TABLESPACE tablespace_name INCLUDING ...
阅读全文
posted @
2015-09-07 09:56
凌度
阅读(274)
推荐(0) 编辑
检测python进程是否存活
摘要:crontab -e 说明:每3分钟检查一次进程是否存在,每个月1号0点1分杀掉进程,重启 check.sh cd $(dirname $0) source ~/.bash_profile SYSTEM_TIME=`date '+%Y-%m-%d %T'` count=`ps -ef | grep
阅读全文
posted @
2015-09-02 16:53
凌度
阅读(7683)
推荐(0) 编辑
nginx转发请求
摘要:location / { proxy_redirect off; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_hea...
阅读全文
posted @
2015-09-01 17:31
凌度
阅读(362)
推荐(0) 编辑