I have googled this question for a while but can\'t find the answer. My question is while deploying the nodejs application on aws elastic-beanstalk servers, I want the nodejs ap
Yes it does. I know because after ssh'ing in to the box i did:
sudo pkill node
And then I can verify that:
sudo tail /var/log/web.stdout.log -f
pgrep node
After playing around with this a bit, and inspecting the process immediately after running
aws elasticbeanstalk restart-app-server --environment-name my-env
from @Human Love 's comment. I found these two commands for manually starting/stopping the process when ssh'd into the EC2. Not sure if these are recommended, but for quick debugging I find them useful
# to start the process
python /opt/elasticbeanstalk/containerfiles/ebnode.py --action start-all
# to stop the process
sudo python /opt/elasticbeanstalk/containerfiles/ebnode.py --action stop-all
[NOTE]: this is a nodejs specific solution. Though other application types are probably pretty similar. To inspect the exact command. Open two terminal windows and
aws elasticbeanstalk restart-app-server --environment-name my-env
ps aux | grep python
(I grepped for node because it was a node app)to find the specific /opt/elasticbeanstalk
script
If you want to restart the server from cron then you could use these commands.
aws elasticbeanstalk restart-app-server --environment-name my-env
Reference
Yes, better option to use Supervisor, however in order to have ability to restart app server with help of aws console or beanstalk cli tools you need to put own handler to Elastic beanstalk hooks in the directory: /opt/elasticbeanstalk/hooks/restartappserver/enact Hook is shell, python or ruby script that placed in mentioned directory. Put logic of the supervisord restart here and you will be able to restart it with help of management console, aws cli tools (http://docs.aws.amazon.com/cli/latest/reference/elasticbeanstalk/restart-app-server.html), elastic beanstalk api: (http://docs.aws.amazon.com/elasticbeanstalk/latest/APIReference/API_RestartAppServer.html)
How to add hook, install supervisiord etc you can read here: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/customize-containers-ec2.html
Add forever to your package.json so it gets installed automatically. Then in EB console, under configuration, custom node command:
node_modules/.bin/forever app.js
I've confirmed (as of Mar 11, 2015) that EB does indeed restart node for you.
To confirm, I added a hidden query param to my app:
if (req.query.testcrash == 'true') {
setTimeout(function(){
undefined.crashMe();
}, 100);
}
Then verified in the log that the exception happened, and that my app was restarted.
For reference: