Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
3answers
10k views

com.jcraft.jsch.JSchException: UnknownHostKey

I don't know how SSH works and I think that's a simple question. How do I fix that exception: com.jcraft.jsch.JSchException: UnknownHostKey: mywebsite.com. RSA key fingerprint is ...
14
votes
7answers
11k views

scp via java

What is the best method of performing an scp transfer via the Java programming language? It seems I may be able to perform this via JSSE, JSch or the bouncy castle java libraries. None of these ...
8
votes
4answers
6k views

any good jsch examples?

I'm trying to run a command over ssh with jsch, but jsch has virtually no documentation and the examples I've found via google are terrible. For example, this one doesn't show code for handling the ...
5
votes
2answers
394 views

Using 3rd party java libraries, like com.jcraft.jsch, with clojure

I'm experimenting with clojure and am trying to get a feel for using 3rd party libraries. I've been able to download some source, bundle it into a jar file with leiningen, put it in my classpath and ...
4
votes
1answer
414 views

How do I write a gzipped byte array via SFTP (Jsch) without decompressing it?

(This was x-posted to the Jsch mailing list BTW). I'm reading data from a database and carrying that as a byte[] (for transportation across middleware components). From that byte[] I know how to ...
3
votes
2answers
101 views

To run sudo commands on a ec2 instance

I cannot run "sudo su" on my ec2 client , I ssh into the client through a java program and run the command through a program. I can run commands like "ls" and "ifconfig" though. I get an error saying ...
3
votes
1answer
259 views

Jsch with spongycastle rather than bouncycastle on Android

I currently have an Android application connecting to my router via ssh using a password. I'm looking to improve this so I can use keys but I am having real issues. From what I understand the version ...
3
votes
2answers
130 views

how to catch an exception that is “never thrown” in Java

I have the following block of code, which uses the JSCH library found at http://www.jcraft.com/jsch/ try { channel.put(f, filename); } catch (FileNotFoundException e) { System.out.println("no ...
3
votes
3answers
2k views

How can I specify the path of a JAR in an ant buildfile?

I am executing lot of scp and sshexec and other remote commands from an ant build script. These commands don't work if jsch.jar isn't in the ant lib directory. To make it work, I copied the JAR into ...
2
votes
1answer
59 views

How to make an event trigger itself again on getting an Exception?

I have a java swing App that connects to a remote Unix box using JSch. The user needs to provide the ip of the unix box in a JTextBox in the Swing App and clicks a "LOGIN" button in the App. I need ...
2
votes
1answer
152 views

How to send and get data to/from SSH Tunnel in java (jsch )?

I am a begginer to SSH Tunnels and I am trying to find a way to implement an SSH tunnel between host and server and through this tunnel, I want to send and get datas. I have searched on the net and I ...
2
votes
1answer
812 views

Using JSch ChannelSftp: How to read multiple files with dynamic names?

I have to read a bunch of .CSV files with dynamic file names from a SFTP server. These files get generated every 15 minutes. I am using JSch's ChannelSftp, but there is no method which would give the ...
2
votes
0answers
732 views

Failure error in JSch while uploading file to a sftp (Private key auth)

I'm trying to upload a file to a sftp server using JSch libs after private key authentication. But put,mkdir etc actions are throwing failure messages. I tried several ways, sure it looks like a ...
2
votes
1answer
329 views

How to SSH to a server behind another SSH server using JSch?

I need to be able to ssh from a Java program into a remote server, and from there SSH to another server. I have credentials for both servers on my client. The commands will be passed automatically ...
2
votes
2answers
2k views

Multiple commands through Jsch Shell

I was trying to execute multiple commands through SSH protocol using the JSch library. But I seem to have stuck and cannot find any solution. The setCommand() method can only execute single commands ...
2
votes
0answers
215 views

Is there any way of having maven scp wagon work consistently on linux/mac/windows platform?

Given the very poor documentation about scp/ssh and maven I tried different approaches, basically falling in two main categories: using scpexe wagon and scp wagon. Usually they both work without issue ...
2
votes
3answers
5k views

com.jcraft.jsch.JSchException: Auth cancel

I'm trying to write an Ant script to retrieve an URL via port tunnelling. It works great when I use a password (the names xxxx'd out for privacy): <project default="main"> <target ...
1
vote
0answers
21 views

Android JSch session closes after two commands

I'm attempting to run some commands over ssh from my app. I have a door unlocker and a script that takes lock or unlock. public void onCreate(Bundle savedInstanceState) { ...
1
vote
0answers
39 views

Jsch slower on 64 bit?

We are looking at running our existing Java app on a 64 bit Windows OS and JVM instead of the current 32 bit app. We noticed that the JSCH SFTP connection takes 15 seconds when run on the 64 bit ...
1
vote
1answer
144 views

What are the key file formats of JSch and sharpSSH?

I'm looking at setting up public key client and server authentication for SFTP using the JSch library (or actually the sharpSSH C# port of it). Unfortunately I cannot find any documentation for the ...
1
vote
3answers
227 views

java: live updating upload progress in TextArea/JProgressBar using JSch SFTP

I have two class fils upload.java and transferProgress.java. upload.java makes applet GUI and uploads file to remote SSH server. transferProgress.java class gives transfer percentage. The upload ...
1
vote
1answer
211 views

JSch sftp upload/download progress

I am new to JSch and java. I managed to get some codes and understand it somehow, but i am stuck on one point. The following code downloads file from SSH server, but i am in need of the progress meter ...
1
vote
1answer
203 views

Java git client using jgit

I am having some difficulties with a git client written in java. I am using the jGit library to connect through ssh on the git server. The problem is that i don't know how to specify the path to the ...
1
vote
1answer
44 views

Sanitize/escape argument that's going into a SSH command

What do I need to do to properly sanitize/escape a parameter that is being entered into a programmatic SSH command? For example, the path parameter - public boolean exists(String path) { try { ...
1
vote
2answers
130 views

Android and JSch: SSH behind another SSH server

I'm trying to access a server behind another server within an Android app. I can get into the first server and do things like edit files and upload/download. The problem is getting into the second ...
1
vote
1answer
364 views

JSch: How to ssh into a server using ssh-keys

I want to ssh into a server from behind another ssh server. The gateway server requires a username/password and I can do this. I am using a tunnel to get into the next server, but this one requires ...
1
vote
2answers
193 views

What's wrong with Jsch and Maven?

I try to use Jsch 0.1.44 together with Maven. I have the following dependency in my pom.xml. <dependency> <groupId>com.jcraft</groupId> ...
1
vote
3answers
360 views

What is the difference between the 'shell' channel and the 'exec' channel in JSch

I want to be able to send many consecutive command represented as strings within a Java application to a SSH server for execution. Should I use: Channel channel = session.openChannel("shell"); ...
1
vote
2answers
375 views

Read a file from the another location using JSch

Here is my code to read a file from the another location using JSch import com.jcraft.jsch.*; import java.io.BufferedReader; import java.io.*; import java.util.Vector; public class SftpClient { ...
1
vote
1answer
188 views

How can I run an application on a remote machine by ssh?

How can I run an application on a remote machine via ssh? I tried using JSCH, this way: Properties props = new Properties(); props.put("StrictHostKeyChecking", "no"); String host = ...
1
vote
1answer
498 views

what's the exact differences between jsch ChannelExec and ChannelShell?

wish I'm not making an rtfm mistake. Can someone tell me the detail differences between the tow.
1
vote
4answers
478 views

send multiple files from windows machine to a linux remote server “Jsch code”

Could smoeone try to send multiple files to a remote server with Jsch, is this can be possible!! I am trying to send a multiple of scripts perl to check some existing files and commandes in the ...
1
vote
2answers
452 views

How can I make the JSch API log in to a Unix server without a password?

I'm trying to make a Java application, that executes shell scripts on a remote Unix server, using the JSch API. I was wondering if it's possible to login to the server without a password. If so - ...
1
vote
1answer
1k views

Problems with Ant optional tasks SSHExec and SCP. Classpath issue?

I'm in the process of modifying an Ant script (currently in use from within MyEclipse) to work from the command line. I'm doing this so anyone can check out the project and build it without MyEclipse. ...
1
vote
1answer
569 views

sending SIGINT CTRL-C using ganymed SSH2?

I need to kill a process that I have started using ganymed SSH2. Specifically i would like to gracefully kill it using CTRL-C. I have seen ideas of trying to send ASCII \x03 but when using the ...
1
vote
3answers
2k views

Jsch or SSHJ or Ganymed SSH-2?

I need to connect to server(username,pasw,host)-- easy enter 3-10 commands -- command="dir;date;cd;dir" is there an easier way ?, without writing 20 lines: while(smtng) { a lot of stuff+ mysterious ...
1
vote
2answers
325 views

Jcraft jsch without interactive popup windows

I tried the ssh lib jsch recently. I tried the example found here: http://www.jcraft.com/jsch/examples/ScpTo.java Is there a way to authenticate programatically, and not through the Java pop up ...
1
vote
2answers
4k views

Sending commands to server via Jsch shell channel

I can't figure it out how I can send commands via Jsch shell channel. I do this, but it doesn't work: JSch shell = new JSch(); String command = "cd home/s/src"; Session ...
1
vote
1answer
193 views

Multi-level SSH login in Java

I'm currently using JSch as the library for connecting to my remote server. In one of the scenarios, I should be able to log in to a server2, through server1. That is, I should first log in to ...
1
vote
4answers
461 views

Looking for java SFTP modern library, not jsch

The "jsch" based implementation works for me. But it looks not modern one due to using Vector (old style Java collection). I found that the other implementations are less popular and not documented. ...
1
vote
1answer
457 views

ant scp task through a proxy

I am trying to make an ant build file to remote copy a war file. Ant scp task uses a jsch library for remote copying. How do I make it work through a proxy, the jsch library clearly supports it. ...
0
votes
1answer
30 views

Can JSCH get messages quickly enough from remote server

I want to write a java tool to monitor some FIX log. The idea is using SSH to logon remote server, then getting the output of command "tail -f xxx" to my PC, rest is some log analysis work. When I ...
0
votes
1answer
73 views

JSch on Honeycomb

I'm developing an Android app that uses sftp to transfer files between the phone and a server. Currently I'm using jsch (0.1.45) and spongycastle. Everything is working correctly except on Honeycomb ...
0
votes
0answers
28 views

Open SSH connection on specific network interface (JSch)

How can I configure JSch client to communicate using network interface other than default one?
0
votes
2answers
72 views

Android to SSH server connection password

I have an Android app, which is intended for use by about 10 people, i.e. it will not be published and is "in house". The app connects the user to an SSH server, using jsch. I hit a problem when ...
0
votes
1answer
84 views

Scp file with jsch gives 'unexpected filename'

I'm using Jsch 0.1.44 to scp a file from one host to another. The relevant code is the following: public boolean transferFileToHost(File fileToTransfer, String destDirectory, String destFilename) { ...
0
votes
1answer
233 views

How to perform scp between 2 remote unix boxes using Jsch?

I am writing a Java code using Jsch in which I need to perform scp between 2 remote UNIX boxes. I tried to execute the scp command in the same way as to execute a normal command from my java code ...
0
votes
2answers
74 views

Browse Directory option for sftp and ftp

Currently I'm doing the functionality for sftp using jsch-0.1.44. I need to add option for the user to browse the directory. So how to get the list of files from the remote server. Is there any other ...
0
votes
1answer
57 views

Can I configure JSch to automatically reconnect on connection failures?

I am using the JSch API for Java for SFTP connections. Sometimes the server may be down for a second or the connection may be busy. In these cases I would need to re-connect to the server three times ...
0
votes
1answer
347 views

Ant SCP task not working - where as I am able to scp using cygwin

Please provide your expert option for a issue I am facing at work.. Ant SCP task not working - where as I am able to scp using cygwin. Local Environment: windows 7 64 bit, Jdk 1.6.0.24, Ant-1.8.2 ...

1 2