Java集群ssh库?
是否有用于跨集群运行大量 SSH 连接的 Java 库?我正在寻找类似于 pdsh 命令行工具或 clustershell python 库。
所需的功能可以让您run_ssh("command -options", listOfHosts)
,然后在数千台主机上运行命令。
Is there a Java library for running large numbers of SSH connections across a cluster? I'm looking for something similar to the pdsh command line tool, or the clustershell python library.
The required functionality is something that lets you run_ssh("command -options", listOfHosts)
, and then handles running the command across thousands of hosts.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Java 中最好的 SSH 工具可能是 JSch:
你可以然后轻松编写自己的类来在主机列表上执行命令。
The best SSH tool in Java is probably JSch:
You can then easily write your own class that executes a command on a list of hosts.