Currently, I have two servers running on an EC2 instance (MongoDB and bottlepy). Everything works when I SSHed to the instance and started those two servers. However, when I closed the SSH session (the instance is still running), I lost those two servers. Is there a way to keep the server running after logging out? I am using Bitvise Tunnelier on Windows 7.
The instance I am using is Ubuntu Server 12.04.3 LTS.
- 4,114
- 12
- 69
- 120
-
Possible duplicate of [In Linux, how to prevent a background process from being stopped after closing SSH client](https://stackoverflow.com/q/285015/608639), [How to make a program continue to run after log out from ssh?](https://stackoverflow.com/q/954302/608639), [Run a command in a shell and keep running the command when you close the session](https://stackoverflow.com/q/431521/608639), etc. – jww May 06 '19 at 21:47
5 Answers
For those landing here from a google search, I would like to add tmux as another option. tmux is widely used for this purpose, and is preinstalled on new Ubuntu EC2 instances.
Managing a single session
Here is a great answer by Hamish Downer given to a similar question over at askubuntu.com:
I would use a terminal multiplexer - screen being the best known, and tmux being a more recent implementation of the idea. I use tmux, and would recommend you do to.
Basically tmux will run a terminal (or set of terminals) on a computer. If you run it on a remote server, you can disconnect from it without the terminal dying. Then when you login in again later you can reconnect, and see all the output you missed.
To start it the first time, just type
tmuxThen, when you want to disconnect, you do Ctrl+B, D (ie press Ctrl+B, then release both keys, and then press d)
When you login again, you can run
tmux attachand you will reconnect to tmux and see all the output that happened. Note that if you accidentally lose the ssh connection (say your network goes down), tmux will still be running, though it may think it is still attached to a connection. You can tell tmux to detach from the last connection and attach to your new connection by running
tmux attach -dIn fact, you can use the
-doption all the time. On servers, I have this in my >.bashrcalias tt='tmux attach -d'So when I login I can just type
ttand reattach. You can go one step further >if you want and integrate the command into an alias for ssh. I run a mail client >inside tmux on a server, and I have a local alias:alias maileo='ssh -t mail.example.org tmux attach -d'This does ssh to the server and runs the command at the end -
tmux attach -dThe-toption ensures that a terminal is started - if a command is supplied then it is not run in a terminal by default. So now I can runmaileoon a local command line and connect to the server, and the tmux session. When I disconnect from tmux, the ssh connection is also killed.This shows how to use tmux for your specific use case, but tmux can do much more than this. This tmux tutorial will teach you a bit more, and there is plenty more out there.
Managing multiple sessions
This can be useful if you need to run several processes in the background simultaneously. To do this effectively, each session will be given a name.
Start (and connect to) a new named session:
tmux new-session -s session_name
Detach from any session as described above: Ctrl+B, D.
List all active sessions:
tmux list-sessions
Connect to a named session:
tmux attach-session -t session_name
To kill/stop a session, you have two options. One option is to enter the exit command while connected to the session you want to kill. Another option is by using the command:
tmux kill-session -t session_name
- 1,810
- 1
- 17
- 21
-
1when you want to disconnect/Detach, you press Ctrl+B then press D immediately! (ie press Ctrl+B, then release both keys, and then press d immediately) – Amar Kumar Dec 06 '20 at 16:14
If you don't want to run some process as a service (or via an apache module) you can (like I do for using IRC) use gnome-screen Install screen http://hostmar.co/software-small.
screen keeps running on your server even if you close the connection - and thus every process you started within will keep running too.
- 506
- 6
- 19
-
3Screen is a good option, especially for OP's use case. A lot of people like tmux too, which is probably a better alternative for more advanced usage needs – adavea Nov 10 '16 at 16:31
-
It would be nice if you provided more info about your environment but assuming it's Ubuntu Linux you can start the services in the background or as daemons.
sudo service mongodb start
nohup python yourbottlepyapp.py &
(Use nohup if you want are in a ssh session and want to prevent it from closing file descriptors)
You can also run your bottle.py app using Apache mod_wsgi. (Running under the apache service) More info here: http://bottlepy.org/docs/dev/deployment.html
Hope this helps.
Addition: (your process still runs after you exit the ssh session)
Take this example time.py
import time
time.sleep(3600)
Then run:
$ python3 time.py &
[1] 3027
$ ps -Af | grep -v grep | grep time.py
ubuntu 3027 2986 0 18:50 pts/3 00:00:00 python3 time.py
$ exit
Then ssh back to the server
$ ps -Af | grep -v grep | grep time.py
ubuntu 3027 1 0 18:50 ? 00:00:00 python3 time.py
Process still running (notice with no tty)
- 53,863
- 12
- 97
- 127
-
-
I think the mongodb is running since `mongod` is included in the init.d folder. But the statement did not work 'python yourbottlepyapp.py &'... – TTT Jan 17 '14 at 20:44
-
-
Right. The python bottle server stopped once the SSH session is over. I guess maybe I should drop a .cong file in the /etc/init/ folder? – TTT Jan 17 '14 at 20:46
-
-
-
Running a process in the background with & does not detach it from the ssh session, and the python process will still be terminated when the ssh session is closed. Starting a service and running things in screen/tmux works differently, though I'm not sure why specifically they work differently – adavea Nov 10 '16 at 16:27
-
@adavea yes it does ! Check my addition. Don't downvote if you can't show examples. – Rico Nov 10 '16 at 18:53
-
Here is a php example: add(new DateInterval("PT1M")); while($d < $d2) { $d = new DateTime("now", $utc); file_put_contents("a", $d->format("H:i:s") . "\n", FILE_APPEND); sleep(1); } If you open 2 sessions, and run this file in the first, and tail -f "a" in the second, you will see that the file stops being written to as soon as you close your ssh session. It's the same with python, I just tested it. Some ssh clients use nohup with &, but most do not – adavea Nov 11 '16 at 14:32
-
@adavea ahh that is if you have a file descriptor open. It's more like 'Running a process in the background with & does not `necessarily` detach it from the ssh session'. You could have just suggested `nohup`. Check the edit... – Rico Nov 11 '16 at 16:27
-
I'm pretty sure it's not related to the file descriptor. To double check, I altered my php code to make a GET request to a web service I have instead of writing to a file, and it still terminates once I close my ssh session. I think you might just be using an ssh client that runs background tasks in a nohup automatically? That or python has a special way of running things that causes them not to be closed when you terminate your ssh connection – adavea Nov 14 '16 at 14:39
-
Running standard ssh session using mac ssh client to a centos box. Nothing out of the ordinary. What are you running ? – Rico Nov 14 '16 at 15:18
You will want the started services to disconnect from the controlling terminal. I would suggest you use nohup to do that, e.g.
ssh my.server "/bin/sh -c nohup /path/to/service"
you may need to put an & in there (in the quotes) to run it in the background.
As others have commented, if you run proper init scripts to start/stop services (or ubuntu's service command), you should not see this issue.
- 23,834
- 3
- 44
- 83
If on Linux based instances putting the job in the background followed by disown seems to do the job.
$ ./script & $ disown
- 91
- 7