ngeek
ngeek

Reputation: 7893

Start detached Unix process via fabric on multiple servers and retrieve status?

What is the recommended way to start long running (bash) scripts on several remote servers via fabric, so that you can later re-attach to the process for checking the status of the process, eventually sigterm it and get the exit code?

EDIT (10-Nov-2012):

In the mean-time I found a question going into the same direction: HOW TO use fabric use with dtach,screen,is there some example

Upvotes: 3

Views: 1229

Answers (1)

Sanketh Katta
Sanketh Katta

Reputation: 6311

It seems that the preferred way would be to use screen or tmux.

http://www.fabfile.org/faq.html#why-can-t-i-run-programs-in-the-background-with-it-makes-fabric-hang

Upvotes: 5

Related Questions