Skip to content

Instantly share code, notes, and snippets.

@nuhil
Last active August 29, 2015 14:17
Show Gist options
  • Save nuhil/969f92d567a29dd5ad9e to your computer and use it in GitHub Desktop.
Save nuhil/969f92d567a29dd5ad9e to your computer and use it in GitHub Desktop.
supervisord troubleshoot

1. Check which supervisor process is running with which configuration


ps -ef | grep supervisord

2. Should get following output in terminal


root      2204     1  0 22:57 ?        00:00:00 /usr/bin/python /usr/bin/supervisord -c supervisor.conf
ubuntu    2791  1394  0 23:10 pts/0    00:00:00 grep --color=auto supervisord

3. Kill with process ID


kill -s SIGTERM 2204

4. Start supervisor


sudo supervisord -c supervisor.conf

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