Skip to content

Instantly share code, notes, and snippets.

@sahilchopra
Last active January 3, 2018 09:45
Show Gist options
  • Save sahilchopra/5c20cd9bfba285390fff03e505020257 to your computer and use it in GitHub Desktop.
Save sahilchopra/5c20cd9bfba285390fff03e505020257 to your computer and use it in GitHub Desktop.
Sidekiq bashscript
#!/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