Last active
April 25, 2016 15:39
-
-
Save andreaskweber/71c7607e3c2ec49a306e to your computer and use it in GitHub Desktop.
Running supervisord with systemd on Debian Jessie
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/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 |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You need to provide the service script for systemd manually.