码迷,mamicode.com
首页 > 其他好文 > 详细

[Fabric]Fabric With Nohup 执行方式

时间:2014-06-14 00:44:28      阅读:333      评论:0      收藏:0      [点我收藏+]

标签:pyhton   fabric   

Fabric是Python的远程SSH命令行工具,常用来实现服务远程管理及持续化部署。最近需要在集群中执行离线任务,在官方文档中有例子

<span style="font-family: Arial, Helvetica, sans-serif;">run("nohup yes >& /dev/null < /dev/null &")</span>

但按照这种写法在实际操作中并无法正确执行相应的任务,折腾一阵后发现这是由于Fabric过早关闭了连接的Session导致的,可以用一个小技巧避免这个问题:

run("$(nohup yes >& /dev/null < /dev/null &) && sleep 1")

原文地址

这个和同事讨论了下,说用 shell脚本在服务器端写好,然后在远程调用

单步部署的时候是这么一行命令: 

nohup python manage.py celeryd -l info &

在服务端直接执行就行了。


实验一:  直接把脚本写到startcelery.sh中

内容如下:

echo "start...celery" > celery.log
nohup python manage.py celeryd -l info &
echo "end...celery" >> celery.log 

py中这么写

run("./startcelery.sh ")
然后远程执行,发现开始和结束都已经记录到log中了,但是服务没有启动成功。


实验二:startcelery.sh的脚本这么写

echo "start...celery" > celery.log
nohup python manage.py celeryd -l info >& /dev/null < /dev/null &
echo "end...celery" >> celery.log 

py中这么写

run("./startcelery.sh ")
然后远程执行,服务成功启动。


也就是说,可以通过加sleep在命令行中,或者是加重定向在shell脚本中远程调用来解决nohup的问题。




[Fabric]Fabric With Nohup 执行方式,布布扣,bubuko.com

[Fabric]Fabric With Nohup 执行方式

标签:pyhton   fabric   

原文地址:http://blog.csdn.net/orangleliu/article/details/30223757

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!