I am new to this kind of application and looking for some sample code how to connect to remote server using SSH , execute commands and get output back using java as programming language.
Thanks in advance.....
Regards, Devayani
|
|
|
Check this library |
|||
|
|
Have a look at Runtime.exec() Javadoc
|
|||||||||
|
|
You may take a look at this Java based framework for remote command execution, incl. via SSH: https://github.com/jkovacic/remote-exec It relies on two opensource SSH libraries, either JSch (for this implementation even an ECDSA authentication is supported) or Ganymed (one of these two libraries will be enough). At the first glance it might look a bit complex, you'll have to prepare plenty of SSH related classes (providing server and your user details, specifying encryption details, provide OpenSSH compatible private keys, etc., but the SSH itself is quite complex too). On the other hand, the modular design allows for simple inclusion of more SSH libraries, easy implementation of other command's output processing or even interactive classes etc. |
|||
|
|
|
JSch is a pure Java implementation of SSH2 that helps for runnig command on remote machine you can find it here. And there are some examples here. You can use exec.java. |
||||
|
|
|
I used ganymede for this a few yeas ago... http://www.cleondris.ch/opensource/ssh2/ |
|||
|
|