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 &
在服务端直接执行就行了。
内容如下:
echo "start...celery" > celery.log nohup python manage.py celeryd -l info & echo "end...celery" >> celery.log
run("./startcelery.sh ")然后远程执行,发现开始和结束都已经记录到log中了,但是服务没有启动成功。
echo "start...celery" > celery.log nohup python manage.py celeryd -l info >& /dev/null < /dev/null & echo "end...celery" >> celery.log
run("./startcelery.sh ")然后远程执行,服务成功启动。
也就是说,可以通过加sleep在命令行中,或者是加重定向在shell脚本中远程调用来解决nohup的问题。
[Fabric]Fabric With Nohup 执行方式,布布扣,bubuko.com
[Fabric]Fabric With Nohup 执行方式
原文地址:http://blog.csdn.net/orangleliu/article/details/30223757