I have an application on openshift which has suddenly stopped running.
The following cartridges are used :
- Mysql
- Cron
- Nodejs
The only information about the crash of the app is the following from nodejs.log :
DEBUG: Sending SIGTERM to child...
Now, when I try to rhc start / stop / restart the app, I got the following messages :
Failed to execute: 'control stop' for /var/lib/openshift/<username>/nodejs
Failed to execute: 'control stop' for /var/lib/openshift/<username>/cron
Failed to execute: 'control stop' for /var/lib/openshift/<username>/mysql
I can manually start the app by ssh in the app and executing
./mysql/bin/control start
./nodejs/bin/control start
./cron/bin/control start
Why can't the app be automatically restarted ?