Last active
August 29, 2015 14:11
-
-
Save nicopaez/e35afdf142204a306004 to your computer and use it in GitHub Desktop.
upstart worker
This file contains hidden or 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
# /etc/init/sidekiq.conf - Sidekiq config | |
# This example config should work with Ubuntu 12.04+. It | |
# allows you to manage multiple Sidekiq instances with | |
# Upstart, Ubuntu's native service management tool. | |
# | |
# See workers.conf for how to manage all Sidekiq instances at once. | |
# | |
# Save this config as /etc/init/sidekiq.conf then mange sidekiq with: | |
# sudo start sidekiq index=0 | |
# sudo stop sidekiq index=0 | |
# sudo status sidekiq index=0 | |
# | |
# or use the service command: | |
# sudo service sidekiq {start,stop,restart,status} | |
# | |
description "Sidekiq Background Worker" | |
# no "start on", we don't want to automatically start | |
stop on (stopping workers or runlevel [06]) | |
# change to match your deployment user | |
setuid worker | |
setgid worker | |
env HOME=/home/worker | |
respawn | |
respawn limit 3 30 | |
# TERM is sent by sidekiqctl when stopping sidekiq. Without declaring these as | |
# normal exit codes, it just respawns. | |
normal exit 0 TERM | |
script | |
# this script runs in /bin/sh by default | |
# respawn as bash so we can source in rbenv | |
exec /bin/bash <<'EOT' | |
# Pick your poison :) Or none if you're using a system wide installed Ruby. | |
# rbenv | |
# source /home/apps/.bash_profile | |
# OR | |
source /home/worker/.profile | |
# OR system: | |
# source /etc/profile.d/rbenv.sh | |
# | |
# rvm | |
# source /home/apps/.rvm/scripts/rvm | |
# Logs out to /var/log/upstart/sidekiq.log by default | |
cd /var/www/superuser | |
exec bundle exec sidekiq -e production | |
EOT | |
end script |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment