Top "Nohup" questions

nohup is a POSIX command to ignore the HUP (hangup) signal, enabling the command to keep running after the user who issues the command has logged out.

sudo nohup nice <-- in what order?

So I have a script that I want to run as root, without hangup and nicely. What order should I …

bash unix sudo nohup nice
How to get the proper exit code from nohup

From the nohup documentation in info coreutils 'nohup invocation' it states: Exit status: 125 if `nohup' itself fails, and `POSIXLY_CORRECT' …

unix nohup
nohup as background task does NOT return prompt

I am trying to run a long running task in the background without having to be logged in and have …

nohup
Unable to run nohup command from jenkins as a background process

UPDATE: Based on below discussion I have edited my answer for more accurate description. I am trying to run a …

java linux unix jenkins nohup
Why do unix background processes sometimes die when I exit my shell?

I wanted to know why i am seeing a different behaviour in the background process in Bash shell Case 1: Logged …

bash unix putty csh nohup
Why docker exec is killing nohup process on exit?

I have running docker ubuntu container with just a bash script inside. I want to start my application inside that …

bash docker nohup
How can I run a dotnet application in the background using sudo on Linux?

I am experiencing some weird problems that I'm not sure how to solve. I am using CodeDeploy to deploy my …

linux .net-core nohup
Error: EBADF, bad file descriptor when running node using nohup of forever

I have a problem with node.js running a small web server serving files from the file system. When starting …

node.js nohup forever
Run shell script with arguments using nohup

I need to do remote login to a server and run a shell script with arguments in the background using …

shell arguments nohup
How to limit size of nohup.out logs

I use the command: nohup <command to run> & and it logs to the nohup.out file, however …

nohup