Il est parfois utile de “daemoniser” rapidement une application Bottle Python. Les commandes proposées sont utiles pour des phases de développement. Il faudra se tourner vers des solutions plus industrielles pour la production.
Solution 1
Commande:
nohup python gateway.py &
Solution 2
Commande:
nohup python gateway.py > server.log &
Solution 3
Commande:
python -u gateway.py >> server.log &
Pour des solutions plus robustes
- Supervisord - http://supervisord.org/
- Creating a daemon the Python way (Python recipe) - http://code.activestate.com/recipes/278731-creating-a-daemon-the-python-way/