Hello If the server ever gets restarted, how can I ensure a custom app gets kicked-off so it's always running as a background process? Is there a way to monitor and be alerted if a particular process isn't running? Thanks asked 15 Nov '13, 06:59 turgs |
You can set up a cron job with For monitoring, you can run a simple cron job that checks your process listing and fires off an email if something isn't as it should be, or you could use something more advanced, like Supervisor, to do it. answered 15 Nov '13, 12:27 seanf |