gpt4 book ai didi

java - "Could not load known_hosts"使用 SSHJ 的异常

转载 作者:行者123 更新时间:2023-12-03 23:13:27 62 4
gpt4 key购买 nike

使用 SSHJ 时出现异常。

这是我如何实现它:

public static void main(String[] args) throws IOException { 
// TODO Auto-generated method stub
final SSHClient ssh = new SSHClient();
ssh.loadKnownHosts();
ssh.connect("serverName");
try{
ssh.authPublickey("myUserId");
final Session session = ssh.startSession();
try{
final Command cmd = session.exec("net send myMachineName Hello!!!");
System.out.println(cmd.getOutputAsString());
System.out.println("\n Exit Status: "+cmd.getExitStatus());
}finally{
session.close();
}
}finally{
ssh.disconnect();
}
}

}

但我得到以下异常:
Exception in thread "main" java.io.IOException: Could not load known_hosts
at net.schmizz.sshj.SSHClient.loadKnownHosts(SSHClient.java:528)
at SSHTEST.main(SSHTEST.java:25)

我究竟做错了什么?

最佳答案

删除对 loadKnownHosts() 方法的调用,正如 erickson 提到的,默认情况下会在 ~/.ssh/known_hosts 下检查(您也可以将位置指定为参数),并将其替换为:

ssh.addHostKeyVerifier("public-key-fingerprint");

要找出指纹是什么,扭曲的方法是在没有该语句的情况下进行连接-您将从异常中找到;-)

关于java - "Could not load known_hosts"使用 SSHJ 的异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3630101/

62 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com