up vote 9 down vote favorite
5
share [g+] share [fb]

Possible Duplicate:
Linux: Prevent a background process from being stopped after closing SSH client

I have a program that takes a lot of time to finish. It is running as root over ssh.
I want it to continue to run after I logout,is this possible and how would I achieve this?

link|improve this question

42% accept rate
feedback

closed as exact duplicate by Ether, Marc Gravell Apr 10 '10 at 19:32

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ.

7 Answers

up vote 13 down vote accepted

Assuming that you have a program running in the foreground, press ctrl-Z, then:

[1]+  Stopped                 myprogram
$ disown -h %1
$ bg 1
[1]+ myprogram &
$ logout
link|improve this answer
Can you explain to me what exactly happens after each step? – Shore Jun 5 '09 at 7:29
You press ctrl-Z. The system suspends the running program, displays a job number and a "Stopped" message and returns you to a bash prompt. You type the "disown -h %1" command (here, I've used a "1", but you'd use the job number that was displayed in the "Stopped" message) which marks the job so it ignores the SIGHUP signal (it will not be stopped by logging out). Next, type the "bg" command using the same job number. This resumes the running of the program in the background and a message is displayed confirming that. You can now log out and it will continue running... – Dennis Williamson Jun 5 '09 at 10:23
2  
...You should be aware that when you use the "bg" command the result is the same as if you'd run your program in the background with an ampersand (&). It won't have any output to stdout so it should be made to write output to a file (nohup will redirect standard output to nohup.out or ~/nohup.out if you don't redirect it yourself). – Dennis Williamson Jun 5 '09 at 10:35
i test it, and doesn't work.. exit when i'm logout... – Gunslinger_ Jul 6 '11 at 23:08
feedback

I would try screen.

link|improve this answer
While screen is a mighty nice tool, nohup is probably better suited for this task. Screen is only needed when you require the program to be interactive, and to be able to go back to the application at a later time. To be entirely honest, I often find myself using screen for the exact same reason as the question above. – wvdschel Jun 5 '09 at 5:59
3  
Even with non-interactive task, it's nice to see that the program finished without errors. It's also good practice to always use screen in case of disconnection. – brunoqc Jun 5 '09 at 6:45
screen is awesome! – DocWiki Mar 8 '11 at 19:51
works nicely ;) – Gunslinger_ Jul 6 '11 at 23:09
feedback

Have you tried using nohup and running it in the background?

nohup sleep 3600 &
link|improve this answer
feedback

Start in the background:

./long_running_process options &

And disown the job before you log out:

disown
link|improve this answer
but the programme has already started to run.. – Shore Jun 5 '09 at 5:21
And will it contine to run as root? – Shore Jun 5 '09 at 5:35
If the program is already running on the console and you can access the console it's running on hit "Ctrl+Z" to send it in the background and then disown the newly created job. As long as a process is started as root it will continue to run as root unless it drops privileges itself. – diciu Jun 5 '09 at 5:49
But the command is named 'disown',isn't that to say root will disown the program,and the program will not continue to run as root ? – Shore Jun 5 '09 at 5:51
After stopping the process with "Ctrl+Z" you send it in the background with "bg" before disowning it. – diciu Jun 5 '09 at 5:52
show 1 more comment
feedback

The nohup(1) idea is better than disown IMHO because disown is a shell-specific built-in of BASH while nohup is part of coreutils and likely to be everywhere.

link|improve this answer
feedback

You could use screen, detach and reattach

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.