Skip to content

Instantly share code, notes, and snippets.

@andreaskweber
Last active April 25, 2016 15:39
Show Gist options
  • Select an option

  • Save andreaskweber/71c7607e3c2ec49a306e to your computer and use it in GitHub Desktop.

Select an option

Save andreaskweber/71c7607e3c2ec49a306e 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
@andreaskweber
Copy link
Author

You need to provide the service script for systemd manually.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment