1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-03-28 21:16:20 +01:00
tldr/pages/common/supervisorctl.md
Lucas Gabriel Schneider a5fe31bc47
multiple pages: format technical tokens (#5119)
Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com>
Co-authored-by: Starbeamrainbowlabs <sbrl@starbeamrainbowlabs.com>
2021-01-31 12:05:18 -05:00

768 B

supervisorctl

Supervisor is a client/server system that allows its users to control a number of processes on UNIX-like operating systems. Supervisorctl is the command-line client piece of the supervisor which provides a shell-like interface. More information: http://supervisord.org.

  • Start/stop/restart a process:

supervisorctl {{start|stop|restart}} {{process_name}}

  • Start/stop/restart all processes in a group:

supervisorctl {{start|stop|restart}} {{group_name}}:*

  • Show last 100 bytes of process stderr:

supervisorctl tail -100 {{process_name}} stderr

  • Keep displaying stdout of a process:

supervisorctl tail -f {{process_name}} stdout

  • Reload process config file to add/remove processes as necessary:

supervisorctl update