Skip to content

Instantly share code, notes, and snippets.

@malefs
Forked from andreaskweber/supervisord.service
Created April 25, 2016 15:39
Show Gist options
  • Select an option

  • Save malefs/d95f3d6b0abba92ec61627faff26595f to your computer and use it in GitHub Desktop.

Select an option

Save malefs/d95f3d6b0abba92ec61627faff26595f to your computer and use it in GitHub Desktop.
Running supervisord with systemd on Debian Jessie
#
# /etc/systemd/system/supervisord.service
#
[Unit]
Description=supervisord - Supervisor process control system for UNIX
Documentation=http://supervisord.org
After=network.target
[Service]
Type=forking
ExecStart=/usr/local/bin/supervisord -c /etc/supervisord.conf
ExecReload=/usr/local/bin/supervisorctl reload
ExecStop=/usr/local/bin/supervisorctl shutdown
[Install]
WantedBy=multi-user.target
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment