Last active
January 3, 2018 09:45
-
-
Save sahilchopra/5c20cd9bfba285390fff03e505020257 to your computer and use it in GitHub Desktop.
Sidekiq bashscript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo "starting check sidekiq" | |
process=`cat /home/ubuntu/staging/wms/shared/pids/sidekiq.pid` | |
processConfirmation=`ps aux | awk '{print $2 }' | grep $process` | |
if [ -z $processConfirmation ] | |
then | |
echo "oops! not running... restarting sidekiq" | |
cd /home/ubuntu/staging/wms/current && source $HOME/.rvm/scripts/rvm && sidekiq -C config/sidekiq.yml -P /home/ubuntu/staging/wms/shared/pids/sidekiq.pid -e staging >> /home/ubuntu/staging/wms/shared/log/sidekiq.out | |
fi | |
echo "finished sidekiq check" | |
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< | |
#!/bin/bash | |
echo "starting check unicorn" | |
process=`cat /home/ubuntu/staging/wms/shared/pids/unicorn.pid` | |
processConfirmation=`ps aux | awk '{print $2 }' | grep $process` | |
if [ -z $processConfirmation ] | |
then | |
echo "oops! not running... restarting unicorn" | |
cd /home/ubuntu/staging/wms/current && source $HOME/.rvm/scripts/rvm && bundle exec unicorn_rails -c /home/ubuntu/staging/wms/current/config/unicorn.rb -E staging -D | |
fi | |
echo "finished unicorn check" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment