会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
计算机是机器,重复性的工作交给它好了——我们要做更重要的创造性工作!
博客园
首页
新随笔
新文章
联系
订阅
管理
上一页
1
···
17
18
19
20
21
22
23
24
25
···
54
下一页
2015年9月2日
检测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 凌度
阅读(7681)
评论(0)
推荐(0)
编辑
2015年9月1日
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)
推荐(0)
编辑
2015年8月26日
Nginx加状态监控
摘要: 安装Nginx时加上 –with-http_stub_status_module在nginx.confserverlocation /nginx_status { stub_status on; access_log off; ...
阅读全文
posted @ 2015-08-26 15:11 凌度
阅读(267)
评论(0)
推荐(0)
编辑
[Oracle] 用python插入中文
摘要: 先替换字符串中的\x22 为双引号,\x0A为回车str2 = '{\x22name\x22:\x22hao\x22 \x0A ,\x22os\x22:\x22other\x22 }print str2.decode('string_escape') 查看oracle服务器编码设置select ...
阅读全文
posted @ 2015-08-26 10:55 凌度
阅读(2799)
评论(0)
推荐(1)
编辑
2015年8月18日
Linux 调优方案--ulimit命令
摘要: 可以用ulimit -a 来显示当前的各种用户进程限制。下面把某linux用户的最大进程数设为10000个:ulimit -u 10240对于需要做许多 socket 连接并使它们处于打开状态的 Java 应用程序而言,最好通过使用 ulimit -n xx 修改每个进程可打开的文件数,缺省值是 1...
阅读全文
posted @ 2015-08-18 16:24 凌度
阅读(1819)
评论(0)
推荐(0)
编辑
nginx配置长连接
摘要: upstream servers { server 127.0.0.1:7985 ;server 127.0.0.1:7986 ; keepalive 10; } server { listen 7995; server_name 127.0.0.1; location / { proxy_pass
阅读全文
posted @ 2015-08-18 11:05 凌度
阅读(30916)
评论(1)
推荐(2)
编辑
2015年8月13日
[lua]判断nginx收到的是否json
摘要: local post_data = ngx.req.get_body_data() --[[ngx.log(ngx.ERR, 'post data:', post_data)]] local ok, res_tab = pcall(cjson.decode, post_data) ...
阅读全文
posted @ 2015-08-13 15:18 凌度
阅读(1810)
评论(0)
推荐(0)
编辑
2015年8月5日
安装OpenResty
摘要: OpenResty,也被称为“ngx_openresty”,是一个基于Nginx的核心Web应用程序服务器,它包含了大量的第三方的Nginx模块和大部分系统依赖包。 OpenResty不是Nginx的分支,它只是一个软件包。主要有章亦春维护。 为什么是OpenResty? OpenResty允许开发
阅读全文
posted @ 2015-08-05 10:17 凌度
阅读(720)
评论(0)
推荐(0)
编辑
2015年7月31日
redis改密码
摘要: 一.如何初始化redis的密码?总共2个步骤:a.在配置文件中有个参数: requirepass 这个就是配置redis访问密码的参数。比如 requirepass test123b.配置文件中参数生效需要重启重启redis。二.不重启redis如何配置密码?a. 在配置文件中配置requirepa...
阅读全文
posted @ 2015-07-31 17:39 凌度
阅读(26352)
评论(0)
推荐(0)
编辑
redis安装
摘要: 官网 http://redis.io/download 安装依赖 安装 前台启动 后台启动 检测 停止 redis-cli -a 123456 -h 127.0.0.1 -p 6379 shutdown 关闭redis服务器,关闭时一定要指定好药关闭的redis服务器的ip和port. 使用文档 进
阅读全文
posted @ 2015-07-31 17:12 凌度
阅读(364)
评论(0)
推荐(0)
编辑
上一页
1
···
17
18
19
20
21
22
23
24
25
···
54
下一页