sftp 연결 문제
1799 단어 ssh
개발 과정에서 문제가 발생하지 않았습니다. 연결 단계:
SshClient ssh = null;
ConfigurationLoader.initialize(false);
// Make a client connection
ssh = new SshClient();
// Connect to the host
ssh.connect(host,port);
KBIAuthenticationClient kbi = new KBIAuthenticationClient();
kbi.setUsername(username);
kbi.setKBIRequestHandler(new KBIRequestHandler(){
public void showPrompts(String arg0, String arg1,KBIPrompt[] prompts)
{
if(prompts != null)
{
prompts[0].setResponse(password);
}
}
});
// Try the authentication
int iresult = ssh.authenticate(kbi);
// Evaluate the result
if (iresult == AuthenticationProtocolState.COMPLETE) {
// The connection is authenticated we can now do some real work!
sftp = ssh.openSftpClient();
attrs = sftp.stat(dir);
}
else
{
ssh = null;
}
if(sftp != null && !sftp.isClosed())
{
try {
sftp.quit();
} catch (IOException e) {
Tracer.error("sFTP connect quit failed.Exception:" + e.toString());
}
}
if(ssh != null && ssh.isConnected())
{
ssh.disconnect();
}
나중에 테스트 기기에서 실행하면 연결할 때마다 서버에 물어봅니다. Do you want to allowthis host key?[Yes|No|Always]:
코드를 보면 연결할 때 HostKeyVerification을 추가하면 연결을 기본적으로 선택하고 사용자에게 문의할 필요가 없습니다.
ssh.connect(host,port,new HostKeyVerification(){
/**
* Host key,
*/
public boolean verifyHost(String arg0, SshPublicKey arg1) throws TransportProtocolException {
return true;
}
});
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
SSH 키 쌍이 손실된 경우 EC2 인스턴스에 대한 SSH 연결 복원얼마 전에 안타깝게도 중요한 EC2 인스턴스에 속한 SSH 키 쌍을 잃어버렸습니다. 그 시점에서 우리는 방금 인스턴스의 스냅샷을 찍고 새 키 쌍으로 새 인스턴스를 생성했습니다. 이 블로그 게시물에서는 SSH 연결을 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.