Thursday 9 October 2014

Java program to execute shell scripts on remote server

If you want to execute shell scripts on remote server and get output with the help of your java program then you are at right place. In this tutorial we will be using Java secure channel ( Jsch ) to log on to remote server, execute the shell script and capture the output. JSch is a pure Java implementation of SSH2. ( download jSch ).

We will be using this library for our program. Download the jar and add to your build path. Once you have added it to your build path you will be able to make secure connections to server. It requires java version 1.4 or greater. I would highly recommend to go through the requirements for this library on their official website ( http://www.jcraft.com/jsch/ ).

Program :

package service;
import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.List;
import com.jcraft.jsch.ChannelExec;
import com.jcraft.jsch.JSch;
import com.jcraft.jsch.Session;

/**
 * This class executes the shell script on the remote server
 * Requires the jSch java library
 * @author Saket kumar
 *
 */

public class ShellExecuter{
 
 private static String USERNAME ="root"; // username for remote host
 private static String PASSWORD ="password"; // password of the remote host
 private static String host = "113.33.111.111"; // remote host address
 private static int port=22;
    
 /**
  * This method will execute the script file on the server.
  * This takes file name to be executed as an argument
  * The result will be returned in the form of the list
  * @param scriptFileName
  * @return
  */
 public List<string> executeFile(String scriptFileName)
 {
     List<string> result = new ArrayList<string>();
     try
     {

         /**
         * Create a new Jsch object
         * This object will execute shell commands or scripts on server
         */
         JSch jsch = new JSch();

         /*
         * Open a new session, with your username, host and port
         * Set the password and call connect.
         * session.connect() opens a new connection to remote SSH server.
         * Once the connection is established, you can initiate a new channel.
         * this channel is needed to connect to remotely execution program
         */
         Session session = jsch.getSession(USERNAME, host, port);
         session.setConfig("StrictHostKeyChecking", "no");
         session.setPassword(PASSWORD);
         session.connect();

         //create the excution channel over the session
         ChannelExec channelExec = (ChannelExec)session.openChannel("exec");

         // Gets an InputStream for this channel. All data arriving in as messages from the remote side can be read from this stream.
         InputStream in = channelExec.getInputStream();

         // Set the command that you want to execute
         // In our case its the remote shell script
         channelExec.setCommand("sh "+scriptFileName);

         // Execute the command
         channelExec.connect();

         // Read the output from the input stream we set above
         BufferedReader reader = new BufferedReader(new InputStreamReader(in));
         String line;
         
         //Read each line from the buffered reader and add it to result list
         // You can also simple print the result here 
         while ((line = reader.readLine()) != null)
         {
             result.add(line);
         }

         //retrieve the exit status of the remote command corresponding to this channel
         int exitStatus = channelExec.getExitStatus();

         //Safely disconnect channel and disconnect session. If not done then it may cause resource leak
         channelExec.disconnect();
         session.disconnect();

         if(exitStatus < 0){
            // System.out.println("Done, but exit status not set!");
         }
         else if(exitStatus > 0){
            // System.out.println("Done, but with error!");
         }
         else{
            // System.out.println("Done!");
         }

     }
     catch(Exception e)
     {
         System.err.println("Error: " + e);
     }
     return result;
 }
 
}

107 comments:

  1. how set password , if any command required password

    ReplyDelete
    Replies
    1. you can use session.setPassword method, as provided in above program at line number 40

      Delete
    2. How to pass arguments to shell script?

      Delete
    3. Same as you use to do it normally on terminal,
      ex : channelExec.setCommand("sh "+scriptFileName + " " + "myargument");
      Note : there is space between your filename and argument

      Delete
    4. This comment has been removed by the author.

      Delete
    5. Hi Sim,
      As error says, may be your file is not there.
      Check once manually whether file is there or not, if there then run your script through terminal.
      *514.log looks for file ending with 514.log. May be there is no file present with this name

      Delete
    6. This comment has been removed by the author.

      Delete
    7. Hi after login to unix server i do ssh to one particular user.

      eg. ssh ames

      how can i do this before executing script. i guess SSH is not happening hence getting No such file or directory.

      Delete
    8. Hi,
      Do your user which is used to initiate session have permission to access that file.
      Can you tell the exact command you are executing i.e channelExec.setCommand("sh "+ " ? ");

      Delete
    9. Hi Sim,

      can you share screen shot of the command you run on Unix terminal.so that i can tell you exact issue.

      Thanks

      Delete
    10. Hi Saket,
      Please find below command
      channelExec.setCommand("sh "+scriptFileName + " 05" + " 11");

      Delete
    11. Hi sim,

      Please share screen shot of the command you run on Unix terminal.so that i can tell you exact issue.
      i am also using the same code its working for wildcard, according to me its an issue on server side.
      you can use without wildcard and check.

      Delete
    12. Hi sim,

      run this command
      grep customer /mnt/access_logs/ames/2015/10/05/*514.log | wc -l
      on the terminal and please share the screen shot.

      Delete
    13. 2093

      this no displayed on screen

      Delete
    14. @sim are you login using same username from java code and on terminal.

      Delete
    15. I guess i need to login with ssh username. I am login with the server username... so I am just getting connected to unix server but dont have access to the path mentioned in script.
      may be this is the root cause.
      I will try...Thanks

      Delete
  2. Hi Sir, may i request to have detailed explanation for each line? Thanks

    ReplyDelete
    Replies
    1. I have added some details as comments
      Let me know if you need more

      Delete
    2. Thank you very much, one more question, how do i execute .sh file using this?

      Delete
    3. This comment has been removed by the author.

      Delete
  3. Hello Kumar, thank very much. If I want to display file in GUI textarea. How I do?

    ReplyDelete
    Replies
    1. Hello Njike,
      Do you want to display contents of that file to be displayed in GUI textarea?
      The textarea is HTML based or Java SWT or other ?

      Delete
  4. Hey Saket,

    I tried this program and it's working fine in case of normal script. But it's failing when there is db connectivity in the script. And the error I am getting is - "DB connection failed while trying to connect ...". Could you please help here?

    ReplyDelete
    Replies
    1. It usually works,i will need some more details about how you are making connection

      Delete
    2. Actually, I am not making db connection in java code. It's there in script itself and also script is running fine when I run it from Unix server.
      It's just that this programs works fine in case of others script but failing in case script is having db connectivity.

      Delete
  5. This comment has been removed by the author.

    ReplyDelete
    Replies
    1. You have to create your own java class which will have main method in it. Then initialize the object of ShellExecuter and call executeFile method

      Delete
    2. Okay thanks .. I did it..but m getting " connection refused " as the error..

      Delete
    3. Connection refused is generally caused by wrong ports, provided your credentials are correct. Double check your port, i have used port 22 in my program

      Delete
  6. Hi,
    First of all i would like to thank you for nice post. my requirement is to run a someKSH.ksh(fileName) program in a particular directory(/home/process/input). By default it goes to home directory . when i change the directory with cd method and print out pwd it prints the right directory. But the program tries to execute the program in a home directory. How do i execute the ksh program in my desired location. Please see what i have done so far
    channel=session.openChannel("exec");

    ((ChannelExec)channel).setCommand("someKSH.ksh processNow.txt");
    channel.setInputStream(null);
    ((ChannelExec)channel).setErrStream(System.err);
    InputStream in=channel.getInputStream();
    channel.connect();

    Result : someKSH.ksh not found

    please help me with this, i am stuck here. thanks in advance

    ReplyDelete
  7. Hi,

    you can provide the full location of the script you want to use provided your user has permission for that. For instance
    ((ChannelExec)channel).setCommand("/somedir/someKSH.ksh processNow.txt");

    ReplyDelete
  8. Hi Saket,

    Thanks for sharing this useful code. I used it.
    In my case, i have a .sh file when i run manually it will updated around 35 table and provied csv fiel in the end. But when i run through your code the execution is success but the tables are not getting updated and the csv file is also not getting created. Can you please help me out.

    ReplyDelete
  9. I am getting the below error: I am sure that I am using the right credential

    com.jcraft.jsch.JSchException: Auth fail
    at com.jcraft.jsch.Session.connect(Unknown Source)

    ReplyDelete
  10. I'm trying to execute a perl script through Java.
    command is - ./load_S_transaction.pl -v S
    But I am getting an IOexception - The system cannot find the file specified
    The script is very much present on the same location.
    I tried giving entire path and not ./ yet no use.
    Please help.

    ReplyDelete
    Replies
    1. The login credentials you have used, does it have permissions for that file ?

      Delete
  11. Hi Saket,
    I would like to call a perl script in a Linux machine(remote) from Java application . So I can use channelExec.setCommand("perl "+ perlFileName with full path + " " + "myargument"); rite?? Also multiple user will hit my Java code at a time , does SSH will handle multiple request , do we have a thread pool like functionality in SSH ??

    ReplyDelete
    Replies
    1. No, every unix system has inbuilt functionality of multiple SSH sessions. so you don't have to worry about that. Every system has some limitation, so it can have upper limit cap on max number of SSH sessions. How much you are anticipating ?

      Delete
  12. How to send the script to server and get the result?

    ReplyDelete
    Replies
    1. You can a have a web server running, so that you can upload your scripts

      Delete
  13. Hi saket, Please help me out to login super user through .setCommand() method. i am getting following error also not able to pass password in command.

    Cannot su to "username" : Authentication is denied.

    ReplyDelete
    Replies
    1. can you show me your code ?

      Delete
    2. Channel channel = session.openChannel("exec");

                                                                     

      ((ChannelExec) channel).setPty(true);

      ((ChannelExec) channel).setCommand("su - username");  

       

      BufferedReader in=new BufferedReader(new InputStreamReader(channel.getInputStream()));                                                            

                                                                     

      OutputStream out=channel.getOutputStream();

      channel.connect();

      out.write((“password”+"\n").getBytes());

      out.flush();

      Delete
    3. This comment has been removed by the author.

      Delete
    4. did u get any solution ?

      Delete
  14. superb explanation as well as code! tq sooo much Saket kumar, for ur wonderful code!!! but i have a small doubt in this,,, iam using this code to run an sh file which has pl/sql stored procedure which is located in linux box --> /u01/oradata/arun/dbclone.sh --> when i connect to linux, and execute this file, its running in the backend only once, again its not running after some time period its running why is it so...and my 1 more doubt is when i run this code i'm able to run the sh file in the backend,but i need to get its results in my console,,,so that i can move it to front end, is it possible???

    ReplyDelete
    Replies
    1. Are you trying to run a periodic task ? then you better use cron jobs , once triggered it will run periodically at specifed time. To get results on console you must echo the output from sh file. It will be captured in the input stream used in above program

      Delete
  15. ok i vl do that,,but its not periodically done... it should when i run this program.. but in my console it shows connected, file is executing,, but in linux the script is not running...this is my code, plssssss help me its urgent..
    package com.inhouse;

    import java.io.BufferedReader;
    import java.io.InputStream;
    import java.io.InputStreamReader;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.sql.Statement;
    import java.util.ArrayList;
    import java.util.List;

    import com.jcraft.jsch.Channel;
    import com.jcraft.jsch.ChannelExec;
    import com.jcraft.jsch.JSch;
    import com.jcraft.jsch.Session;

    public class AccessingSh {

    ResultSet rs=null;
    Connection con=null;
    Statement st=null;
    PreparedStatement ps=null;
    static String scriptFileName=null;

    public static void main(String[] args) {




    String host="xxx.xxx.x.xx";
    String user="xxxx";
    String password="xxx123";

    String command1="/u01/oradata/arun/dbclone.sh";
    try{

    java.util.Properties config = new java.util.Properties();
    config.put("StrictHostKeyChecking", "no");
    JSch jsch = new JSch();
    Session session=jsch.getSession(user, host, 22);
    session.setPassword(password);
    session.setConfig(config);
    session.connect();
    System.out.println("Connected");

    Channel channel=session.openChannel("exec");
    ((ChannelExec) channel).setCommand(command1);

    ((ChannelExec) channel).setErrStream(System.err);


    channel.connect();

    System.out.println("file is ex");




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

    catch(Exception e){}


    }}

    ReplyDelete
    Replies
    1. HOW TO PASS arguments for this particular script

      Delete
    2. Same as you use to do it normally on terminal,
      ex : channelExec.setCommand("sh "+scriptFileName + " " + "myargument");
      Note : there is space between your filename and argument

      Delete
  16. my sh file (dbclone.sh) is in /u01/oradata/arun/dbclone.sh is given as follows:
    a=`sqlplus -s "/ as sysdba" < 'clone',
    job_type => 'EXECUTABLE',
    job_action => '/home/oracle/project/clone_db_auto/clone_test_automated_full.sh',
    start_date => SYSDATE,
    repeat_interval => 'NULL',
    enabled => TRUE,
    auto_drop => TRUE,
    comments => 'Calling shell script from Oracle'
    );
    dbms_output.put_line('Cloning Mode Activated');
    end;
    /
    exit;
    EOF`

    and after this i have to call this script dbrunn.sh from the same path and get the output from here , i tried to call both the scripts using ur code but unable to do it

    dbrunn.sh file is:
    a=`sqlplus -s "/ as sysdba" <<EOF
    exec CLONING;
    exit;
    EOF`
    echo $a

    ReplyDelete
  17. hi Sir, when I am printing a string using "Example" , it is getting captured in Inputstream, but variable is not getting captured

    e.q.
    abc =Test;
    echo "$abc"

    ReplyDelete
  18. Great job! thanks for sharing.
    But I wish to know; if the shell script I am running is on my local systems (windows) and I want it to run on on a remote Linux box, what changes Can I make? I tried a couple already but its failing.
    Thanks for your help

    ReplyDelete
  19. Hi,

    The code is working perfectly fine. It is connecting to the linux server and i'm able to run the shell script. But in my script there are 2 files which are being used and since i'm giving only the path to that script i'm not getting the output.

    ReplyDelete
  20. Hi,
    I'm executing a script which does an postgreSQL dump via pg_dump but I'm not getting the shell output like:

    pg_dump: reading extensions
    pg_dump: identifying extension members
    pg_dump: reading schemas
    pg_dump: reading user-defined tables
    pg_dump: reading user-defined functions
    .....

    How can I capture this output?

    ReplyDelete
  21. Hi,

    This is bit urgent for me. Any prompt reply is appreciated !!!
    Above code ".suggest the usage of default authentication method as "Keyboard interactive.

    1. I am getting "Auth cancel" for above code.;
    2. When i add a code session.setpassword("preferredAuthentication","password"- exception goes but then i get another expception as "Auth Failure". My query is related to that . My password is valid and I can connect to server and execute shell script using java.

    3.Initially in debug mode, I was getting password as null string when called for setpassword method

    4. Later I tried "String".getbytes() and passed as parameter to setpassword method


    I am trying to understand is using "Keyboard interactive" method only valid way of providing password. Is it like when we give a string to setpassword , it expects password in encoded form and whats way to handle it

    ReplyDelete
  22. I want this or similar code to execute the Linux shell script from by servlet in web application. Can you please help me with that. I tried above code but it's giving me compilation error. Thanks

    ReplyDelete
    Replies
    1. You check once again, have you added library in your class path ?

      Delete
  23. I am trying to do something similar. But in my case, the scripts are present on the local server instead of the remote server. I have already explored the option of sftp-ing the script to the remote machine and then executing the script. But that option is not feasible for me. Other option is that I can convert the whole script into a string and then send it as a command. I want to know is there a better way than sending the contents of the script as a command?

    ReplyDelete
  24. Hi Saket,

    I have a use case where in I have to connect to a ssh terminal using
    ssh cli@terminal_ip. when you connect, it will ask for the username and password, there you have to provide your username and password and execute the commands on the terminal.

    With the help of this post, I am able to connect by using the following code to get the session

    final Session session = jsch.getSession("cli", terminal_ip, port);

    but after this, I am not able to enter the username and password for the terminal. Could you please help me in achieving that??

    ReplyDelete
    Replies
    1. "cli" is the username !
      You can follow the next steps

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

      Delete
  25. Hi Saket,

    No Cli is not the username..

    Cli is a terminal through which you can do some configurations on the node.

    after doing ssh cli@nodeip

    you will be asked to provide the admin user and credentials for the user like this..

    enter admin username :

    enter admin password :

    Here I need to give the admin username and password using java code.
    Could you please let me know how to do that?


    Thanks,
    Mahesh

    ReplyDelete
  26. Hi,

    I needed to use jsch to run some commands on a remote server in the production environment and hence cannot use the "StrictHostKeyChecking", "no" configuration. Without this, I get a session is down warning. How am I to setup the host at the remote server and make this a dynamic process? I've putty-ed into the remote server and played around so my local machine should be authenticated.

    Thanks,
    Pranav

    ReplyDelete
  27. Hi, I am trying to execute command on a Linux machine. Eclipse stays as it is after i execute the statement "session.connect();" I have given a sysout after it but the control doesn't reach there nor any exception is thrown.

    ReplyDelete
  28. Hi Saket,

    My requirement is to do CVS merge automation. I have some list of commands in sh file. Could you share how to get the params in sh file which we are passing in our class file.

    ReplyDelete
  29. is it possible to navigate to particular path after connecting to the server? I have written the selenium scripts to connect to the box, But not able to navigate. Please suggest me how to do this?

    ReplyDelete
    Replies
    1. There can be multiple ways to achieve it.

      1. Write a shell script for all your needs in one file and execute it directly.

      2. You can also write series of commands in channel exec method ie ((ChannelExec)channel).setCommand("somescript.sh; cd /usr; pwd");

      3. Instead of ChanelExec use ChannelShell, ChannelShell comes handy for interactive options.

      Delete
  30. Hi,

    I have multiple commands to be executed on SSH. How would i do that.

    Could you please help me on that.

    Thanks.

    ReplyDelete
    Replies
    1. Write all your commands in a .sh file and execute it.

      Delete
  31. Hi Saket,

    I have tried to run a .sh file in a remote server, but while execute the java code while connecting to session throwing the below error
    Session.connect: java.lang.NullPointerException. Please provide your suggestion to solve this issue.

    Thanks

    ReplyDelete
    Replies
    1. With that information i can only say your session is not initialised. Check details like host, port and password. Are you able to connect via SSH using same details ?

      Delete
    2. Yes, I can connect via SSH using the same details.. thank you for the quick reply ..please help me to sort this out.

      Delete
    3. Hi Saket,

      While using port 21 with the same log-in details i am getting the below error,

      java.lang.ArrayIndexOutOfBoundsException: length == 892547100 off == 8 buffer length == 20480

      Please let me know if i need any config details regarding buffer size or length.




      As you asked please find the code below,

      package linux;
      import java.io.BufferedReader;
      import java.io.InputStream;
      import java.io.InputStreamReader;
      import java.util.ArrayList;
      import java.util.Hashtable;
      import java.util.List;

      import com.jcraft.jsch.Channel;
      import com.jcraft.jsch.ChannelExec;
      import com.jcraft.jsch.ChannelSftp;
      import com.jcraft.jsch.JSch;
      import com.jcraft.jsch.Session;

      public class Connect {

      public void executeFile(String scriptFileName,String argument, String user, String host, String password,int port)
      {
      try{
      String result;
      JSch jsch = new JSch();
      Session session = jsch.getSession(user, host, port);
      Hashtable h = new Hashtable();
      h.put("StrictHostKeyChecking", "no");
      h.put("GSSAPIAuthentication","no");
      h.put("GSSAPIKeyExchange", "no");
      session.setConfig(h);
      session.setPassword(password);
      System.out.println("before");
      session.connect();

      System.out.println("After");


      ChannelExec channelExec = (ChannelExec)session.openChannel("exec");
      InputStream in = channelExec.getInputStream();
      channelExec.setCommand("sh "+scriptFileName+" "+argument);
      channelExec.connect();
      BufferedReader reader = new BufferedReader(new InputStreamReader(in));
      String line;
      while ((line = reader.readLine()) != null)
      {
      result=line+"\n";
      System.out.println("reader" +result);
      }
      int exitStatus = channelExec.getExitStatus();
      System.out.println("ExitStatus "+exitStatus);
      channelExec.disconnect();
      session.disconnect();



      }catch(Exception e){
      System.out.println(e.getStackTrace());
      }



      }}

      Delete
  32. Hi ,
    Can we run power shell script using this code.
    Thanks
    Sarvjeet

    ReplyDelete
  33. Hi. Great work.
    I am trying to execute a TCL script on the Linux server. I am able to connect to the server but I get the "proc: command not found" error. Can you guide me on what is missing..

    ReplyDelete
  34. Hii , actually i have tried it . but this code doesn't work.

    ReplyDelete
  35. This comment has been removed by the author.

    ReplyDelete
  36. session.connect goes inte idle state, can you find the reason

    ReplyDelete
    Replies
    1. Only if you can share what you have done.

      Delete
    2. Hi, actually I'm trying to connect to remote server with credentials similar to yours. Initially I'm getting the port issue so I changed the port number which is available. My program runs till session.connect() method and from there nothing happens. When I pass the parameter as timeout it throws Timeout excpetion. I checked through netstat that my connection is established on the specified port but it is unable to create session.

      Delete
    3. The program is similar to yours only the static variables are different

      Delete
    4. It will throw an exception is session is already connected, without seeing your code it's hard to debug

      Delete
    5. public List executeFile(String scriptFileName)
      {
      List result = new ArrayList();
      try
      {

      /**
      * Create a new Jsch object
      * This object will execute shell commands or scripts on server
      */
      JSch jsch = new JSch();

      /*
      * Open a new session, with your username, host and port
      * Set the password and call connect.
      * session.connect() opens a new connection to remote SSH server.
      * Once the connection is established, you can initiate a new channel.
      * this channel is needed to connect to remotely execution program
      */
      Session session = jsch.getSession(USERNAME, host, port);
      Properties config = new Properties();
      config.put("StrictHostKeyChecking", "no");
      session.setConfig(config);
      session.setPassword(PASSWORD);
      session.connect();

      //create the excution channel over the session
      ChannelExec channelExec = (ChannelExec)session.openChannel("exec");

      // Gets an InputStream for this channel. All data arriving in as messages from the remote side can be read from this stream.
      InputStream in = channelExec.getInputStream();

      // Set the command that you want to execute
      // In our case its the remote shell script
      channelExec.setCommand("cmd "+scriptFileName);

      // Execute the command
      channelExec.connect();

      // Read the output from the input stream we set above
      BufferedReader reader = new BufferedReader(new InputStreamReader(in));
      String line;

      //Read each line from the buffered reader and add it to result list
      // You can also simple print the result here
      while ((line = reader.readLine()) != null)
      {
      result.add(line);
      }

      //retrieve the exit status of the remote command corresponding to this channel
      int exitStatus = channelExec.getExitStatus();

      //Safely disconnect channel and disconnect session. If not done then it may cause resource leak
      channelExec.disconnect();
      session.disconnect();

      if(exitStatus < 0){
      // System.out.println("Done, but exit status not set!");
      }
      else if(exitStatus > 0){
      // System.out.println("Done, but with error!");
      }
      else{
      // System.out.println("Done!");
      }

      }
      catch(Exception e)
      {
      System.err.println("Error: " + e);
      }
      return result;
      }

      Delete
    6. this is the method and I call it from main() with parameters

      obj.executeFile(".bat file path")

      Delete
    7. And as I said there is no exception it waits for very long time at session.connect() method.

      Delete
  37. Hi, if someone can resolve the above issue, then please take the lead

    ReplyDelete
  38. Hello Saket

    Thanks for the program
    I tried to use the above program but it is not working for me and I am getting exit status 127
    Can you please help

    ReplyDelete
    Replies
    1. status 127 indicates a 'command not found error'

      Delete
    2. Thanks for quick reply Saket but what can be the reason for this,I also tried by giving full path of my sh file but no help
      Can you please suggest some quick debug step for this to work

      Delete
    3. Script full is path:Path/abc/xyz/script.sh

      I tried with
      String co="Path/abc/xyz/script.sh"
      channelExec.setCommand("sh "+co);

      Can you please what mistake I am doing

      Delete
    4. try with the absolute path starting from '/'

      Delete
    5. Tried same now I am getting 101 exit status

      Delete
    6. Check couple of things:
      1. Can you run the same script successfully using terminal with no errors.
      2. Do 'user' which you used to login has necessary privilege to run that script file

      Delete
    7. Let me know if you are able to resolve that session.connect() issue

      Delete
    8. Hi Saket,
      I have same issue getting 127 Error Code.My DB package is calling JSCH class using command 'sh execute_file.ksh ' and in JSCH class it is setting the command as

      session = jSch.getSession(sftp_user, sftp_host, 2000);
      ....
      ((ChannelExec) channel).setCommand(command);

      then it throughs error as below :

      Inside sendCommand available
      Block#2 Inside sendCommand: Exception: Others
      Exception from Block#2.B: Invalid command used !!sh execute_file.ksh 207158 334357
      Inside sendCommand: FINALLY Disconnections executed
      6. function call above: fn_sas_file_execution response: 127:ERROR: Error while executing SAS Macro.

      manual execution works perfect ..only issue through JSCH .Please suggest

      Delete
  39. Hi, the command is to execute bat file simply mentioning the path to it like "C:\users\userfolder\xyz.bat", you can try some valid commands.

    ReplyDelete
  40. Simply put, add any valid cmd command as parameter to executefile() method

    ReplyDelete
  41. Thank you very much for the code.

    ReplyDelete
  42. How do I execute multiple commands instead of one like below."channelExec.setCommand("sh "+scriptFileName);"
    My requirement is to run few other commands before executing a script after logging into a host.

    ReplyDelete
  43. java.util.Properties config = new java.util.Properties();
    config.put("StrictHostKeyChecking", "no");
    config.put("PreferredAuthentications", "publickey,keyboard-interactive,password");
    session.setConfig(config);

    ReplyDelete
  44. Hi,
    I am trying to run powershell script on remote server using Java code getting the exception when it tries to connect jsch.getsession(username, host,port) here i am using port 22
    Exception: com.jcraft.jsch.jschexception:session.connect: java.net.socketexception: connection reset while using

    ReplyDelete
  45. Thank you for sharing this tutorial. The basics of client-server programming and networking can be helpful in understanding the client-server architecture. I appreciate the author's efforts in writing this amazing article. Great blog, glad to come across this. Cracking the coding interview

    ReplyDelete