开发者

JSch session.connect() hungs with CoreFTP

开发者 https://www.devze.com 2023-03-15 22:47 出处:网络
I have CoreFTP configured for localhost and the next code: JSch.setLogger(new MyJschLogger()); //class for console output

I have CoreFTP configured for localhost and the next code:

JSch.setLogger(new MyJschLogger()); //class for console output

Session session = jsch.getSession("user", "localhost", 21);

Properties config = new Properties();
config.put("StrictHostKeyChecking", "no");
session.setConfig(config);

session.setPassword("password");
session.connect();

when program achieves connect(), two messages appear at console output:

INFO: Connecting to lo开发者_运维问答calhost port 21
INFO: Connection established

...and nothing more happens. After some minutes, connection is closed by foreign host exception appears.

Why?

Thanks for all!


Port 21 is the normal port for FTP. JSch is only an SSH client, with support for SFTP in the ChannelSFTP class. JSch knows nothing about FTP (and SFTP is unrelated to FTP, other than by name and that it allows similar things).

You need to setup your server to use the SSH protocol (usually on port 22, but you can use any port, as long as you use the same port on the client). See the documentation - I think you have to check the SSH check box.

Also, if your code is nothing more than what you posted, then nothing more than connecting will happen. To transfer files, you will need to open a ChannelSFTP, and issue the right commands (e.g. call one or more of the put/get methods).


I also faced the similar issue:

"ERROR 2016-04-27 15:05:16,489 [CollectionThreadPool-0] com.dell.supportassist.collector.cli.executor.SSHExecutor: com.jcraft.jsch.JSchException: connection is closed by foreign host"

In my case, channel was getting closed randomly. And when we are trying to re-connect the channel then it was not re-connecting and failing.

This was happening due to looping logic while connecting, so I tried to connect the session without channel by calling method connectWithoutOpenChannel instead of connectinternal(). This resolved my issue.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号