I am trying to host an Apache superset server on an Amazon EC2 instance. Whenever i host it from a standalone ssh, the moment i close the terminal from my laptop, the superset server shuts down..Is there a way i can host SuperSet server on Amazon EC2 instance so that it is online always ?
Asked
Active
Viewed 517 times
0
-
Run it in `screen` or `tmux` for testing. For more permanent solution setup `systemd` unit for it. – Marcin Mar 10 '20 at 06:32
1 Answers
0
Run it using nohup superset <options> &
. Then even after you close the terminal, it continues to run.
Stopping it should require kill
the process using PID, which can be found using grep
.

Saurav Sahu
- 13,038
- 6
- 64
- 79