假设我已经在我的机器上运行了一个 supervisord 进程。如何为 supervisord 添加一个新的服务/进程来监控?例如,假设我有这个简单的 .conf 文件:

运行-suman-daemon.conf

[program:suman-daemon]
command=/Users/alexamil/WebstormProjects/suman/cli/suman-daemon.sh

我试过了:
supervisord add run-suman-daemon.conf

但我收到此错误:
Error: positional arguments are not supported: ['add', 'sup.conf']
For help, use /usr/local/bin/supervisord -h
supervisord 守护进程正在运行,我可以使用 supervisorctl 连接到它

最佳答案

您可以使用以下命令来读取新配置并启动新进程

supervisorctl reread
supervisorctl update

关于supervisord - 向现有的 supervisord 进程添加新服务,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47300888/

10-16 16:03