前端之家收集整理的这篇文章主要介绍了
supervisord:在另一个程序运行之前不要启动程序,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在Ubuntu上使用主管,有几个程序要监督.是否可以配置管理程序,以便在另一个特定程序成功启动之前不启动程序?
即我想在Zookeeper启动后才运行Kafka.
我不确定主管可以确保但是尝试指定Zookeeper的
priority低于Kafka,如下所示:
[program:Zookeeper]
command=xx
priority=1
autostart = true
autorestart = true
[program:Kafka]
command=yy
priority=999
autostart = true
autorestart = true
原文链接:https://www.f2er.com/linux/398597.html