gpt4 book ai didi

java - sftp java客户端保持sshd进程在远程机器上运行

转载 作者:行者123 更新时间:2023-12-01 09:21:07 25 4
gpt4 key购买 nike

我正在使用 jcraft 库,以便使用 scp 将文件从一台服务器发送到另一台服务器。代码是这样的

public class Scp {
String DestinationHost;//host IP
String DestinationUserName;//username
String DestinationPassword;//password
String DestinationPublicKeyFile;//public key-if any
String DestinationDirectory;//where to save on remote
String SourceFile;
/*
setters-getters
*/
public void send() throws SftpException, FileNotFoundException, JSchException{
JSch jsch = new JSch();
Session session = null;
session = jsch.getSession(DestinationUserName,DestinationHost,22);
jsch.addIdentity(getDestinationPublicKeyFile(),getDestinationPassword());

session.setConfig("StrictHostKeyChecking", "no");
session.connect();

ChannelSftp channel = null;

//try to connect
channel = (ChannelSftp)session.openChannel("sftp");
channel.connect(30000);
channel.connect();

File localFile = new File(getSourceFile());
File remoteFile=new File(getDestinationDirectory());
channel.cd(remoteFile.getParent());

channel.put(new FileInputStream(localFile),//the source file
remoteFile.getParentFile().getName());//the destination name(not the path)

channel.disconnect();
session.disconnect();
}
}

这是从其他 java 类调用了几次,每次都创建一个新对象,如下所示

Scp scp=new Scp();

scp.setDestinationHost(CopyDestHost);
scp.setDestinationPassword(CopyDestPassword);
scp.setDestinationPublicKeyFile(CopyDestKey);
scp.setDestinationUserName(CopyDestUser);
scp.setSourceFile(temp.getAbsolutePath());
scp.setDestinationDirectory(filepath);

stream.flush();
stream.close();
scp.send();

由于我使用 channel.disconnect();session.disconnect(); 关闭连接,为什么我会看到一个巨大的 sshd< 列表 连接关闭数小时后在我的远程计算机上运行的进程?例如

root     13251   863  0 11:54 ?        00:00:00 sshd: skaros [priv]
user 13300 13251 0 11:54 ? 00:00:00 sshd: skaros@notty
skaros 13301 13300 0 11:54 ? 00:00:00 /usr/lib/openssh/sftp-server
root 14885 863 0 10:35 ? 00:00:00 sshd: skaros [priv]
skaros 14986 14885 0 10:35 ? 00:00:00 sshd: skaros@notty
skaros 14987 14986 0 10:35 ? 00:00:00 /usr/lib/openssh/sftp-server

这有问题吗?我应该手动杀死它们吗?我就这样离开他们吗?

最佳答案

结果证明这是一个“错误”。 This post用这个解决了

  while (channel.getExitStatus() == -1){
try{Thread.sleep(1000);}catch(Exception e){System.out.println(e);}
}

关于java - sftp java客户端保持sshd进程在远程机器上运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40163601/

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