SSH 错误:名称或服务未知
我收到此错误是因为,10 个可用插槽上有 5 个外围托盘(随时可能更改),因此除了对所有外围托盘执行 ping 操作并执行命令(killall)之外,我没有其他选择。有没有办法禁止查看此错误并仅在托盘可用时执行操作并忽略其他情况
PS:我正在编写 ruby 脚本 帮我解决一下,
代码是这样的
for i 循环
ssh -f -n user@host_$i 杀死所有-9进程
I am getting this error because, there are 5 peripheral trays on 10 available slots(subjected to change at anytime) so i have no other option other than pinging all of them and performing a command(killall). Is there a way to disable viewing this error and just performing the operation if the tray is available and ignore other wise
PS: am writing ruby script
help me out
code goes like this
for i loop
ssh -f -n user@host_$i killall -9 process
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这将是一个可行的解决方案吗?将您的代码添加到异常处理块中,并且不在句柄中执行任何操作。
Will this be a workable solution?? Added your code into a Exception handling block and not doing anything in the handle.
好奇这个块是否解决了问题,这不是一个很好的解决方案,但试图改进异常......
Curious if this block solves the problem, not a great solution , but tried to refine on the exception one ...