Posts by Edgar Carvalho • 129 points
1 post
-
2
votes3
answers611
viewsA: How to ensure that a service is always running on Centos?
A much simpler way than Monit, as commented by J. Bruni in his question, is to make a script. vi /Xyz/django_app_verify.sh #!/bin/bash if [ ! "$(pidof django_app)" ] then…