nohup Execute Commands After You Exit From a Shell Prompt

by on January 4, 2006 · 31 comments· Last updated October 22, 2008

Most of the time you login into remote server via ssh. If you start a shell script or command and you exit (abort remote connection), the process / command will get killed. Sometime job or command takes a long time. If you are not sure when the job will finish, then it is better to leave job running in background. However, if you logout the system, the job will be stopped. What do you do?

nohup command

Answer is simple, use nohup utility which allows to run command./process or shell script that can continue running in the background after you log out from a shell:

nohup Syntax:

nohup command-name &

Where,

  • command-name : is name of shell script or command name. You can pass argument to command or a shell script.
  • & : nohup does not automatically put the command it runs in the background; you must do that explicitly, by ending the command line with an & symbol.

nohup command examples

1) Login to remote server
$ ssh user@remote.server.com
2) Execute script called pullftp.sh
# nohup pullftp.sh &
Type exit or press CTRL + D exit from remote server.
# exit
3) Find all programs and scripts with setuid bit set on, enter:
# nohup find / -xdev -type f -perm +u=s -print > out.txt &
Type exit or press CTRL + D exit from remote server.
# exit
Please note that nohup does not change the scheduling priority of COMMAND; use nice for that:
# nohup nice -n -5 ls / > out.txt &
As you can see nohup keep processes running after you exit from a shell. Read man page of nohup and nice command for more information. Please note that nohup is almost available on Solaris/BSD/Linux/UNIX variant.

Update:
# 1: As pointed out by Jason you can use at command to queue a job for later execution. For example, you can run pullftp.sh script to queue (one minute) later execution
$ echo "pullftp.sh" | at now + 1 minute
# 2: You can also use screen command for same. Brock pointed out disown shell internal command for same purpose. Here is how you can try it out:
$ pullftp.sh &
$ disown -h
$ exit

According to bash man page:

By default, removes each JOBSPEC argument from the table of active jobs. If the -h option is given, the job is not removed from the table, but is marked so that SIGHUP is not sent to the job if the shell receives a SIGHUP. The -a option, when JOBSPEC is not supplied, means to remove all jobs from the job table; the -r option means to remove only running jobs.



You should follow me on twitter here or grab rss feed to keep track of new changes.

Featured Articles:

{ 31 comments… read them below or add one }

1 Jason Buberel January 4, 2006 at 12:28 pm

You forget the other easy way to do the same: the ‘at’ command!

> echo “pullftp.sh” | at now + 1 minute

Then logout. After the job completes, you’ll even get an email message with the contents of stdout/stderr.

Reply

2 LinuxTitli January 4, 2006 at 7:54 pm

Jason thanks for pointing out at command :) appreciate your post.

Reply

3 Stoyan January 4, 2006 at 8:38 pm

I have screen installed on all servers. Not only detaching (nohup), but also opening new consoles etc.

Reply

4 LinuxTitli January 4, 2006 at 11:39 pm

Heh, my bad.

Stoyan thanks for reminding us about screen manager :) I will update post tomorrow (it is late night now) with screen utility.

Reply

5 Brock Tice January 5, 2006 at 8:52 pm

Screen is good, but there’s also “disown” in bash, which leaves jobs running even if you log out.

Reply

6 LinuxTitli January 6, 2006 at 12:16 am

Brock, seems good choice, thanks

Reply

7 Ruwinda Fernando March 3, 2009 at 7:09 am

Thank you. I’ve been searching for this. I knew this kind a functionality should exist. Often i had this issue when ever I’m connecting from home to my office-server.

BR :)

Reply

8 anil April 15, 2009 at 8:20 pm

Hi everybody.

I am working as sys admin on linux and now i want to learn a programming lanuage can anybody suggest which one i should go for. Which can help me both at admin work and with small app programs.

regards
anil

Reply

9 shane April 28, 2009 at 2:07 pm

Screen is definitely the best way to do this.

You can run commands and then detach the screen, Ctrl+a+d and leave the command running

Reply

10 Justin April 30, 2009 at 8:12 am

Thanks. Excellent for those lengthy commits!

Reply

11 Dan Grindstaff June 12, 2009 at 3:56 pm

I used nohup as follows… nohup ./command &. Did I make a mistake in putting the “./” in front of the command when executing it?

Reply

12 Vivek Gite June 12, 2009 at 4:05 pm

./ means run command from current directory. Do you have command in current dir?

Reply

13 Dan Grindstaff June 12, 2009 at 4:10 pm

Thanks for the reply. Yes command is in current directory but nohup log lists several complaints about not being able to find various files. Also, when executing, I was expecting to be returned to the command prompt which I was not.

Reply

14 Dan Grindstaff June 12, 2009 at 4:54 pm

I just checked with my Unix admin who thinks that it does not matter whether you include the ./ in the nohup string. Also, If I hit return during the process I get my prompt back and can run a monitoring script.

Reply

15 Vivek Gite June 12, 2009 at 7:05 pm

What kind of error you get in log files? When you get prompt back what do you see with ps and jobs command?

Reply

16 Dan Grindstaff June 12, 2009 at 8:27 pm

Hi and thanks for the reply. I am seeing error messages that files cannot be found that I know are present in a different folder (where it should be looking). That is what concerned me that I might have forced the process to look only in it’s current directory with “./”. When I get the prompt back I can ps and see the job running.

Reply

17 billyduc July 1, 2009 at 10:07 am

I have the situation…
I did ssh to the remote server. Run the yum -y update command without nohup!
The updating run for a while and I want to log out off the remote server…and I want yum still run even I log out..
How can I use ‘nohup’ without canceling my update !
thanks for any suggestions !!

Reply

18 Solaris July 12, 2009 at 3:21 pm

I found these two methods googling:

Method 1:
- start the process from console
- send it to background CTRL + Z
- then disown -a

Method 2:
nohup command

Reply

19 Russell June 9, 2010 at 9:53 pm

Thanks! I needed a shell script to run a program, without it closing as soon as the script was over!

Reply

20 ashah July 2, 2010 at 4:36 pm

Question: I started a nohup foo & . Now I want to stop it… is there a way to end the process even though I ‘nohupped’ it prior?

The process had an error and stopped running, but I am still logged into the server even after I close my SSH terminal.

Thanks in advance!

Reply

21 Aggdata September 3, 2010 at 4:28 pm

Hi There
My nohup keeps ending with “Cancel request sent”

nohup Scriptfile.ksh > Scriptlog.log 2>&1 &

this happens even when I nohup it as you can see above

Any help would be much appreciated

Reply

22 George Anderson November 10, 2010 at 11:40 pm

Thank you for the disown tip. Very nice article!

George.

Reply

23 Erlon December 22, 2010 at 9:20 pm

How can a trigger a remote command via ssh command line??
Like:
ssh root@machine “nohup /home/test/scripts/qemu-vio &”

In the command above, the program qemu-vio doent run in backgroung. Why?? How can I do that??

Reply

24 Mahendra Kumar March 29, 2011 at 6:49 am

Could any one tell me what are the expected outputs of a nohup command ? If any script / job fails or successful, what are the outcome of this command ?

Reply

25 Jair L. April 2, 2011 at 12:07 pm

You may find the results of the executed script or command executed with nohup, visiting nohup.out file generated automatically.

Reply

26 Carlo April 25, 2011 at 1:43 pm

Try also.

Ctrl + z
bg

Reply

27 sameer oak August 25, 2011 at 5:34 am

> Aggdata September 3, 2010
> Hi There
> My nohup keeps ending with “Cancel request sent”
> nohup Scriptfile.ksh > Scriptlog.log 2>&1 &
> this happens even when I nohup it as you can see above
> Any help would be much appreciated
[ sameeroak ]
try the following:
nohup > /dev/null 2>&1 Scriptfile.ksh > Scriptlog.log &

Reply

28 Richard August 25, 2011 at 11:01 pm

Thank you very much, excellent article

Reply

29 haberler November 16, 2011 at 5:58 pm

is it available in centos dist’s ? l will search for more manuals :) thanks for sharing

Reply

30 mullairamani June 6, 2012 at 8:59 am

is it possible to use the news command in single system in linux

Reply

31 Francesco August 3, 2012 at 1:49 pm

Hi everybody.
I have launched a set of commands with the nohup features. If i launch “top” i have 4 processes running in the background, all having the same name.
Is there a way i can go back to the command line that launched each of the processes?
To be correct, i have written a small bash file that launches all the programs one aftert the other.

so what i’ve done is:

chmod +x bash.sh
nohup ./bash.sh >/dev/null &

I have 4 different files, each launching a set of processes having all the same name. I need to recall only one of this bash files because i ve noticed i gave a wrong input.
thanks for the help,

F.

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <blockquote> <pre> <a href="" title="">
What is 10 + 14 ?
Please leave these two fields as-is:
Solve the simple math so we know that you are a human and not a bot.




Tagged as: , , , , , , , , , , , , , , ,

Previous post:

Next post: