Skip to content

Instantly share code, notes, and snippets.

@Kroid
Created January 29, 2019 11:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kroid/db656457bfcda2afb44dc16b69da3a21 to your computer and use it in GitHub Desktop.
Save Kroid/db656457bfcda2afb44dc16b69da3a21 to your computer and use it in GitHub Desktop.
# from http://www.onurguzel.com/supervisord-restarting-and-reloading/
Posted byOnur Güzel 7 September 2012 22 Comments on Supervisord: Restarting and Reloading
Supervisord is a great daemon for managing application processes. However it does not have a reload option, and restart works different than we get used to. These command makes the following effects.
service supervisor restart
Restart supervisor service without making configuration changes available. It stops, and re-starts all managed applications.
supervisorctl restart <name>
Restart application without making configuration changes available. It stops, and re-starts the application.
If you create a new configuration. None of the commands above will make it available. If you want to apply your configuration changes in both existing and new configurations, start applications in new configurations, and re-start all managed applications, you should run:
service supervisor stop
service supervisor start
If you do not want to re-start all managed applications, but make your configuration changes available, use this command:
supervisorctl reread
This command only updates the changes. It does not restart any of the managed applications, even if their configuration has changed. New application configurations cannot be started, neither. (See the “update” command below)
supervisorctl update
Restarts the applications whose configuration has changed.
Note: After the update command, new application configurations becomes available to start, but do not start automatically until the supervisor service restarts or system reboots (even if autostart option is not disabled). In order to start new application, e.g app2, simply use the following command:
supervisorctl start app2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment