How to setup a group in supervisord?

巧了我就是萌 提交于 2019-12-03 05:38:07

You need to use a * wildcard to select all programs in a group:

supervisorctl restart tapjoy:*

Note: it may that your shell requires you to escape the *, usually with \*

I know it's an old thread, but I ran into the same problem, and it would've been good to find the answer here. So for future reference, instead of:

program=tapjoy-game1,tapjoy-game2

You need:

programs=tapjoy-game1,tapjoy-game2

Docs: http://supervisord.org/configuration.html#group-x-section-values

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!