How can I keep a process alive after closing the putty session?

43

12

I am using putty to interact with Linux server. I have started a process using putty. The process is running and will take 5-6 hours. I want that process to keep running after I close the putty session. How can I keep that process alive after closing the putty session? I do not want to keep the computer ON all the time. Is there any way to do this?.

prakash.panjwani

Posted 2010-01-16T15:08:21.263

Reputation: 587

Answers

33

I use screen for that kind of stuff. Actually sometimes I just leave it on quite a while so I can get back to what I was doing.

ziya

Posted 2010-01-16T15:08:21.263

Reputation: 486

the link does not work anymore – Malky.Kid – 2018-11-16T22:46:24.693

The process is running now ,is it work for that process?I am asking because the process is on the middle and i do not want to restart it now – None – 2010-01-16T15:18:52.083

+1 for mentioning my undisputed favourite command line tool. It's a gem in situations like this. – Noufal Ibrahim – 2010-01-16T15:41:46.820

@Noufal, totally! @prakash, you need to run screen before you can start any processes – ziya – 2010-01-16T15:48:52.507

If you want to connect to several machines it can even be a nice idea to run several screens inside the first screen so you just have to connect to one screen to get access to all your running remotes. – None – 2010-01-16T17:26:34.147

31

^Z
bg %1
disown -h %1

The '-h' makes the process immune to SIGHUP when the session completes.

Tom Anderson

Posted 2010-01-16T15:08:21.263

Reputation: 1 341

3Note that there's no way to 'reown' or 'adopt' the process - once you've done this, you can't ever bring it back to the foreground. If the process is a batch job working to produce some files, though, that shouldn't matter. – None – 2010-01-16T15:34:38.910

19

Use the nohup command. Just prefix it to your command and it will daemonise them so that they won't stop when you log off/terminate your shell session. The standard output will by default be in a file called nohup.out. Check the manual page for nohup(1) for more information.

Noufal Ibrahim

Posted 2010-01-16T15:08:21.263

Reputation: 659

the process is running ,is it work for that process?I am asking because the process is on the middle and i do not want to restart it now? – None – 2010-01-16T15:16:39.453

Too late...at least, for normal operations. It wouldn't be altogether surprising to find that if you attach a debugger to the process, and then tweaked it with an appropriate set of system calls, then perhaps you could put it in the background. But it is not what could be recommended - I wouldn't bother, for example, and I have at least some idea of what might be involved. You have two choices now...either stay connected until it finishes, or stop the current process, and restart a new one using nohup. – Jonathan Leffler – 2010-01-16T15:19:54.610

1If you're using bash (and I think zsh), you can use Tom Anderson's solution and disown the process so that it continues to run even when you disconnect. – Noufal Ibrahim – 2010-01-16T15:40:08.693

Yup - disown looks to be the way to go for an already running job. It's doable because the shell that started the job can manipulate the properties needed. – Jonathan Leffler – 2010-01-16T15:56:26.757

5

Start process with nohup "processname" &. You can also detach it with screen or tmux.

Damir

Posted 2010-01-16T15:08:21.263

Reputation: 131

3

The above solutions are quite well described, however, none of them worked for me UNTIL I also edited PuTTY configuration to :

Enable TCP keepalives (SO_KEEPALIVE option)

I hadn't seen this anywhere else, and just found it by trial and error.

user295374

Posted 2010-01-16T15:08:21.263

Reputation: 31

1

Ctrl+z Send the current process to the background.

Also, you may add & at the end of your command to run in in background

BarsMonster

Posted 2010-01-16T15:08:21.263

Reputation: 172

I found that using '&' to send to the background works with putty, but when I connect using directly ssh from a shell, if I close the connexion, the background process is killed. Any idea of why ? – Zardoz89 – 2015-11-19T08:36:03.763

4Normally, control-z puts the process into a state of suspended animation; the bg command puts it into the background. However, that also keeps the process attached to the terminal, whereas nohup detaches it from the terminal and therefore allows putty to disconnect and the process to survive the disconnection. – Jonathan Leffler – 2010-01-16T15:15:41.560

0

How to keep weblogic running after closing putty window:

Simple Steps: after the login through putty follow the below steps:

  1. Go to the directory on the server where the startWebLogic.sh command is located.
  2. Type command screen and press Enter (a new screen will open).
  3. In the new screen type your run command ./startWebLogic.sh.
  4. Press Ctrl+a then press d (without holding Ctrl); you will return back to the previous screen.
  5. When you want to return to your server log screen, type command screen -r.

Akbar

Posted 2010-01-16T15:08:21.263

Reputation: 1

0

if the process is a for nodejs, and it may be your intention since you originally posted this on stackoverflow. I was originally searching for this question myself. I found pm2 and it is amazing. The other answers may help for general putty but if it is node specific this is by far the best answer, as there is built in monitoring and the setup is simply a

$ npm install pm2 -g
$ cd yourappdirectory

"PM2 is a production process manager for Node.js applications with a built-in load balancer. It allows you to keep applications alive forever, to reload them without downtime and to facilitate common system admin tasks.

Starting an application in production mode is as easy as:"

$ pm2 start yourappname.js

"using the save and then freeze command you enable the processes to autostart on reboot"

$ pm2 save
$ pm2 freeze

for monitoring its

$ pm2 monit

and restarts

$ pm2 restart yourappname

also for direct logging information

$ pm2 logs

I now can easily run two putty windows instead of using my digialocean browser window (which I couldnt scroll up on); For more info see the main github

https://github.com/Unitech/pm2

its amazing.

sasy solutions

Posted 2010-01-16T15:08:21.263

Reputation: 1

Can you explain a bit more about what pm2 *is* and what the commands you show do? Please do not respond in comments; [edit] your answer to make it clearer and more complete. – G-Man Says 'Reinstate Monica' – 2019-09-01T01:47:04.700

Added a bit more documentation for the community. I wish I would have found pm2 years ago. – sasy solutions – 2019-09-01T08:13:23.390

0

You can use & after the link.

Example:

[localhost ~ ]# wget http://www.link.com/download/download.zip &

codemania

Posted 2010-01-16T15:08:21.263

Reputation: 111

The question wasn't about a link, do you mean add an & sign after the command line? – Danny – 2018-10-09T14:14:01.503

0

If you want the program that is contained in the process to always or frequently run in the background, you can code it to separate from the controlling terminal (make such behaviour controllable via an option flag) and run in the background.

That's a long term solution, of course, not for the currently running process.

mpez0

Posted 2010-01-16T15:08:21.263

Reputation: 2 578