流程管理解决方案

发布于 2024-08-26 13:16:01 字数 324 浏览 7 评论 0原文

我正在开发一个项目,该项目需要一个类似于 init.d 的进程管理解决方案,但具有以下要求:

1)使用 Windows 而不是 Linux 2)必须能够启动/停止/重新启动用异构语言编写的程序。 3) 必须能够扩展进程管理器以根据通过 pub/sub 接口(最有可能是 DDS)从远程主机获取的运行模式信息来启动/停止进程。

理想情况下,我们希望使用 Java,但也可以使用 C/C++。此外,进程管理器必须是故障安全的(我认为在失败时自动重新启动的服务中运行就足够了)。

我可以从头开始编写自己的实现,但我们的时间表非常紧张,因此显然已经开发的解决方案更好。

迈克尔

I'm working on a project that requires a process management solution much like init.d but with the following requirements:

1) Working with Windows not Linux
2) Must be able to start/stop/restart programs written in heterogeneous languages.
3) Must be able to extend process manager to start / stop processes depending on run-mode information obtained from remote-host over pub/sub interface (most likely DDS).

Ideally we would want this in Java, but can be C / C++. Also, the process manager must be fail safe (I assume running in a service with auto-restart on fail will be enough).

I could write my own implementation for scratch, but we have a unreasonably tight schedule, so obviously an already developed solution is preferable.

Michael

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

淡淡的优雅 2024-09-02 13:16:01

最后,我只是使用 Windows 服务包装器引导我的进程,并使用 Windows 服务 API 以编程方式手动管理它们的生命周期。

In the end I simply bootstrapped my processes with a Windows service wrapper and manually managed their lifecycle programatically with windows APIs for services.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文