I have defined a non-homogenous Supervisor group. However I cannot control that group with the group name.
If I try, I get the following error:
$ supervisorctl start groupname
groupname ERROR (no such process)
I can, however, control a single elements of the group, for example supervisorctl start groupname:programname
Is it possible to control the entire group at once (start/stop/restart all programs in the group)? If so, how?
Ah, you use
supervisorctl start groupname:*
I discovered this by typing just
supervisorctl start
and being told:...similarly for stop and restart.