用于远程进程启动/关闭的简单协议
我正在寻找一种简单的协议来从一个管理应用程序控制远程进程。 远程进程将在 Windows 和 Linux (x86) 上运行。
是否有一个简单的协议来管理远程进程,我可以找到在 Windows 和 Linux 上运行的守护进程?
I'm looking for a simple protocol to control remote processes from one managing application. The remote processes will run on Windows and Linux (x86).
Is there a simple protocol for managing remote processes, for which I could find daemons that run on both Windows and Linux?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我认为 ssh 是远程管理的“瑞士军刀”。 然后,通过 ssh 进行通信的自定义脚本可以进行进程管理。 在 Windows 上,我将 ssh 安装为 Cygwin 的一部分。
I consider ssh to be the "Swiss-army knife" of remote administration. A custom script communicating over ssh can then do the process management. On Windows, I install ssh as part of Cygwin.
在 Windows 上,您可以使用 shutdown.exe \\remote_name [/y] [/c]
http://support .microsoft.com/kb/317371
On windows you can use shutdown.exe \\remote_name [/y] [/c]
http://support.microsoft.com/kb/317371
谢谢内森。
Windows 用户还可以使用以下软件包代替 Cygwin: http://sshwindows.sourceforge.net/
Thanks Nathan.
Windows users can also use the following package instead of Cygwin: http://sshwindows.sourceforge.net/