SupervisorComponentssupervisorctl
The command-line client piece of the supervisor is named supervisorctl. It provides a shell-like
interface to the features provided by supervisord. From supervisorctl, a user can connect to
different supervisord processes, get status on the subprocesses controlled by, stop and start
subprocesses of, and get lists of running processes of a supervisord.
The command-line client talks to the server across a UNIX domain socket or an internet (TCP) socket.
The server can assert that the user of a client should present authentication credentials before it
allows him to perform commands. The client process typically uses the same configuration file as the
server but any configuration file with a [supervisorctl] section in it will work.
RunningSupervisor
This section makes reference to a BINDIR when explaining how to run the supervisord and supervisorctl
commands. This is the "bindir" directory that your Python installation has been configured with. For
example, for an installation of Python installed via ./configure--prefix=/usr/local/py;make;makeinstall, BINDIR would be /usr/local/py/bin. Python interpreters on different platforms use a different
BINDIR. Look at the output of setup.pyinstall if you can't figure out where yours is.
supervisorctlCommand-LineOptions-c, --configuration
Configuration file path (default /etc/supervisord.conf)
-h, --help
Print usage message and exit
-i, --interactive
Start an interactive shell after executing commands
-s,--serverurlURL
URL on which supervisord server is listening (default "http://localhost:9001").
-u, --username
Username to use for authentication with server
-p, --password
Password to use for authentication with server
-r, --history-file
Keep a readline history (if readline is available)
action[arguments]
Actions are commands like "tail" or "stop". If -i is specified or no action is specified on the command
line, a "shell" interpreting actions typed interactively is started. Use the action "help" to find out
about available actions.
Runningsupervisorctl
To start supervisorctl, run $BINDIR/supervisorctl. A shell will be presented that will allow you to
control the processes that are currently managed by supervisord. Type "help" at the prompt to get
information about the supported commands.
The supervisorctl executable may be invoked with "one time" commands when invoked with arguments from a
command line. An example: supervisorctlstopall. If arguments are present on the command-line, it will
prevent the interactive shell from being invoked. Instead, the command will be executed and
supervisorctl will exit.
If supervisorctl is invoked in interactive mode against a supervisord that requires authentication, you
will be asked for authentication credentials.
Glossarydaemontools
A processcontrolsystembyD.J.Bernstein.
launchd
A processcontrolsystemusedbyApple as process 1 under Mac OS X.
runit A processcontrolsystem.
Superlance
A package which provides various event listener implementations that plug into Supervisor which
can help monitor process memory usage and crash status: http://pypi.python.org/pypi/superlance.
umask Abbreviation of usermask: sets the file mode creation mask of the current process. See
http://en.wikipedia.org/wiki/Umask.