python程序之间的通信
我有一个在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用 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.
如果您需要比简单信号更复杂的东西,请考虑使用 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.
您是否尝试过阅读有关 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
任何其他类型的信号发送都是可能的,但这些可能是最常见的。
Any other kind of signalling is possible, but these would probably be the most common.