Contents
Nohup
nohup is a POSIX command which means "no hang up". Its purpose is to execute a command such that it ignores the HUP (hangup) signal and therefore does not stop when the user logs out. Output that would normally go to the terminal goes to a file called nohup.out, if it has not already been redirected.
Use
The first of the commands below starts the program in the background in such a way that the subsequent logout does not stop it. Note that these methods prevent the process from being sent a 'stop' signal on logout, but if input/output is being received for these standard I/O files (stdin, stdout, or stderr), they will still hang the terminal. See Overcoming hanging, below. nohup is often used in combination with the nice command to run processes on a lower priority.
Implementations
Some shells (e.g. bash) provide a shell builtin that may be used to prevent SIGHUP being sent or propagated to existing jobs, even if they were not started with nohup. In bash, this can be obtained by using ; using the same builtin without arguments removes the job from the job table, which also implies that the job will not receive the signal. Before using on an active job, it should be stopped by , and continued in the background by the command. Another relevant bash option is, which automatically sends the HUP signal to jobs when the shell is exiting normally. The AIX and Solaris versions of nohup have a option that modifies a running process to ignore future SIGHUP signals. Unlike the above-described builtin of bash, accepts process IDs. The nohup command has also been ported to the IBM i operating system.
Overcoming hanging
Note that nohupping backgrounded jobs is typically used to avoid terminating them when logging off from a remote SSH session. A different issue that often arises in this situation is that ssh is refusing to log off ("hangs"), since it refuses to lose any data from/to the background job(s). This problem can also be overcome by redirecting all three I/O streams: Also note that a closing SSH session does not always send a HUP signal to dependent processes, such as when a pseudo-terminal has not been allocated.
Alternatives
This article is derived from Wikipedia and licensed under CC BY-SA 4.0. View the original article.
Wikipedia® is a registered trademark of the
Wikimedia Foundation, Inc.
Bliptext is not
affiliated with or endorsed by Wikipedia or the
Wikimedia Foundation.