python manage.py runserver 0.0.0.0:8000
how to make this command running if terminal close
for now i use screen and it works any other way to do that? i mean for production how to link it to ngix or apahce in ubuntu server?
python manage.py runserver 0.0.0.0:8000
how to make this command running if terminal close
for now i use screen and it works any other way to do that? i mean for production how to link it to ngix or apahce in ubuntu server?
You could try to run your Python script with the nohup
command infront. Nohup will make the script immume to hangups.
example
nohup python myscript.py &
Your output will be send to nohup.out.
exit
the session. To do that one has to use screen or similar, where, as you pointed out, you can use the nohup in addition to screen...
– DarkCygnus
Nov 14 '18 at 17:04
nohup python manage.py runserver &
this worked for me. to kill it you need to find the pid using ps aux | grep manage.py
then kill it using kill pid
– suhailvs
Sep 28 '21 at 03:36
Very nice alternative to screen
is program called tmux. I use it constantly for daily basis.
To dump process into same terminal, runcd any command you'd like, then:
bg
- it will dump process to the background