I find it hard to run Django on my Ubuntu server. I can start Django, but I do not know how to start it as a service.
Distributor ID: Ubuntu
Description: Ubuntu 10.10
Release: 10.10
Codename: maverick
That's what I'm doing:
- I sign up to my Ubuntu server
- Run the Django process:
sudo ./manage.py runserver 0.0.0.0:80 & - Test: traffic passes and the application displays the correct page.
- Now I close the terminal window and everything stops. I think I need to somehow start it as a service, but I canβt figure out how to do it.
How to save a Django process on port 80, even if I'm not registered?
In addition, I understand that I must link it through Apache, but not yet ready.
source
share