1 Answer
- Newest
- Most votes
- Most comments
2
The easiest way would be to use nohup
nohup python manage.py runserver 0:8000 &
You can verify that it's indeed working by exiting the SSH session and connecting back again. Then verify with ps command that it is yet running
ps ax | grep python
--Syd
answered 2 years ago
Relevant content
- asked 2 years ago
- AWS OFFICIALUpdated 7 months ago
- AWS OFFICIALUpdated 6 months ago
- AWS OFFICIALUpdated 7 months ago
- AWS OFFICIALUpdated a year ago
It works! Thank you so much. You made my day :)