0

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 ?

Olaf Kock
  • 46,930
  • 8
  • 59
  • 90
Shabari nath k
  • 920
  • 1
  • 10
  • 23
  • 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 Answers1

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