python程序之间的通信

发布于 2024-09-12 04:22:34 字数 77 浏览 4 评论 0原文

我有一个在 Linux 上作为守护进程运行的 python 程序。

如何从另一个 python 程序向这个守护进程发送信号?

I have a python program that is running as a daemon on Linux.

How to send this daemon a signal from another python program?

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

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

发布评论

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

评论(4

近箐 2024-09-19 04:22:34

使用 os.kill 发送信号。信号在 signal 模块中定义。您只需要以某种方式获取守护进程的 pid 即可。

另一件事 - 您也可以使用信号模块来注册信号处理程序。

Use os.kill to send signals. The signals are defined in the signal module. You'll just need to get the pid of the daemon in some way.

One more thing - you can use the signal module to register signal handlers as well.

素手挽清风 2024-09-19 04:22:34

如果您需要比简单信号更复杂的东西,请考虑使用 RPC 库,例如 PYRO。这样做的优点是,即使您必须将进程移动到单独的服务器,您也可以使用它。

或者,如果您主要针对 Linux 系统,请考虑使用 DBUS 代替。有一个 python 库,现在甚至在 Windows 上也支持它。

If you need something more sophisticated than simple signals, consider using an RPC library like PYRO. The advantage of this is that you can use it even if you have to move your processes to separate servers.

Or, if you mainly target Linux systems, then look at using DBUS instead. There is a python library and it is now even supported on Windows.

帅气尐潴 2024-09-19 04:22:34

您是否尝试过阅读有关 Python 进程间通信的文档?这是一个链接:

http://docs.python.org/library/ipc.html

Have you tried reading through the docs on interprocess communication in Python? Here is a link:

http://docs.python.org/library/ipc.html

来日方长 2024-09-19 04:22:34
  • 守护进程可以有一个开放的(网络)套接字,它可以在其中接受命令。
  • 它可以监视文件中的更改。

任何其他类型的信号发送都是可能的,但这些可能是最常见的。

  • The daemon could have an open (network) socket, where it accepts commands.
  • It could monitor changes in a file.

Any other kind of signalling is possible, but these would probably be the most common.

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