SFTP with java client when keys are shared [duplicate]












0
















This question already has an answer here:




  • Can we use JSch for SSH key-based communication?

    1 answer




I have two servers A and B.
I want to SFTP a file from server A to B.



Public key of server A (~/.ssh/id_rsa.pub) has been added to the ~/.ssh/authorized_keys of server B.



From command line, I can SFTP from server A to B without entering password.
However, from a Java client using library Jsch I am unable to make SFTP connection to server B and I am getting authentication error:



Error occurred during SFTP. Auth fail
com.jcraft.jsch.JSchException: Auth fail
at com.jcraft.jsch.Session.connect(Session.java:519)
at com.jcraft.jsch.Session.connect(Session.java:183)
at Main.main(Main.java:15)


Is there a way I can connect to server B for SFTP purposes using Java client without specifying password?



Below is my Java code for reference:



import com.jcraft.jsch.*;

public class Main {

public static void main(String args) {

JSch jsch = new JSch();
Session session = null;

try {
session = jsch.getSession("processor", "remoteserver.myorg.com", 22);
session.setConfig("StrictHostKeyChecking", "no");
System.out.println("Trying to connect...");
session.connect();
System.out.println("Connected successfully.");

Channel channel = session.openChannel("sftp");
channel.connect();
ChannelSftp sftpChannel = (ChannelSftp) channel;
System.out.println("Doing SFTP...");
sftpChannel.put("/tmp/test.txt", "/some/remote/folder");
System.out.println("Success");
sftpChannel.exit();
session.disconnect();

} catch (JSchException | SftpException e) {
System.err.println("Error occurred during SFTP. " + e.getMessage());
e.printStackTrace();
}

}
}









share|improve this question













marked as duplicate by Martin Prikryl sftp
Users with the  sftp badge can single-handedly close sftp questions as duplicates and reopen them as needed.

StackExchange.ready(function() {
if (StackExchange.options.isMobile) return;

$('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');

$hover.hover(
function() {
$hover.showInfoMessage('', {
messageElement: $msg.clone().show(),
transient: false,
position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
dismissable: false,
relativeToBody: true
});
},
function() {
StackExchange.helpers.removeMessages();
}
);
});
});
Nov 21 '18 at 11:54


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.























    0
















    This question already has an answer here:




    • Can we use JSch for SSH key-based communication?

      1 answer




    I have two servers A and B.
    I want to SFTP a file from server A to B.



    Public key of server A (~/.ssh/id_rsa.pub) has been added to the ~/.ssh/authorized_keys of server B.



    From command line, I can SFTP from server A to B without entering password.
    However, from a Java client using library Jsch I am unable to make SFTP connection to server B and I am getting authentication error:



    Error occurred during SFTP. Auth fail
    com.jcraft.jsch.JSchException: Auth fail
    at com.jcraft.jsch.Session.connect(Session.java:519)
    at com.jcraft.jsch.Session.connect(Session.java:183)
    at Main.main(Main.java:15)


    Is there a way I can connect to server B for SFTP purposes using Java client without specifying password?



    Below is my Java code for reference:



    import com.jcraft.jsch.*;

    public class Main {

    public static void main(String args) {

    JSch jsch = new JSch();
    Session session = null;

    try {
    session = jsch.getSession("processor", "remoteserver.myorg.com", 22);
    session.setConfig("StrictHostKeyChecking", "no");
    System.out.println("Trying to connect...");
    session.connect();
    System.out.println("Connected successfully.");

    Channel channel = session.openChannel("sftp");
    channel.connect();
    ChannelSftp sftpChannel = (ChannelSftp) channel;
    System.out.println("Doing SFTP...");
    sftpChannel.put("/tmp/test.txt", "/some/remote/folder");
    System.out.println("Success");
    sftpChannel.exit();
    session.disconnect();

    } catch (JSchException | SftpException e) {
    System.err.println("Error occurred during SFTP. " + e.getMessage());
    e.printStackTrace();
    }

    }
    }









    share|improve this question













    marked as duplicate by Martin Prikryl sftp
    Users with the  sftp badge can single-handedly close sftp questions as duplicates and reopen them as needed.

    StackExchange.ready(function() {
    if (StackExchange.options.isMobile) return;

    $('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
    var $hover = $(this).addClass('hover-bound'),
    $msg = $hover.siblings('.dupe-hammer-message');

    $hover.hover(
    function() {
    $hover.showInfoMessage('', {
    messageElement: $msg.clone().show(),
    transient: false,
    position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
    dismissable: false,
    relativeToBody: true
    });
    },
    function() {
    StackExchange.helpers.removeMessages();
    }
    );
    });
    });
    Nov 21 '18 at 11:54


    This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.





















      0












      0








      0


      1







      This question already has an answer here:




      • Can we use JSch for SSH key-based communication?

        1 answer




      I have two servers A and B.
      I want to SFTP a file from server A to B.



      Public key of server A (~/.ssh/id_rsa.pub) has been added to the ~/.ssh/authorized_keys of server B.



      From command line, I can SFTP from server A to B without entering password.
      However, from a Java client using library Jsch I am unable to make SFTP connection to server B and I am getting authentication error:



      Error occurred during SFTP. Auth fail
      com.jcraft.jsch.JSchException: Auth fail
      at com.jcraft.jsch.Session.connect(Session.java:519)
      at com.jcraft.jsch.Session.connect(Session.java:183)
      at Main.main(Main.java:15)


      Is there a way I can connect to server B for SFTP purposes using Java client without specifying password?



      Below is my Java code for reference:



      import com.jcraft.jsch.*;

      public class Main {

      public static void main(String args) {

      JSch jsch = new JSch();
      Session session = null;

      try {
      session = jsch.getSession("processor", "remoteserver.myorg.com", 22);
      session.setConfig("StrictHostKeyChecking", "no");
      System.out.println("Trying to connect...");
      session.connect();
      System.out.println("Connected successfully.");

      Channel channel = session.openChannel("sftp");
      channel.connect();
      ChannelSftp sftpChannel = (ChannelSftp) channel;
      System.out.println("Doing SFTP...");
      sftpChannel.put("/tmp/test.txt", "/some/remote/folder");
      System.out.println("Success");
      sftpChannel.exit();
      session.disconnect();

      } catch (JSchException | SftpException e) {
      System.err.println("Error occurred during SFTP. " + e.getMessage());
      e.printStackTrace();
      }

      }
      }









      share|improve this question















      This question already has an answer here:




      • Can we use JSch for SSH key-based communication?

        1 answer




      I have two servers A and B.
      I want to SFTP a file from server A to B.



      Public key of server A (~/.ssh/id_rsa.pub) has been added to the ~/.ssh/authorized_keys of server B.



      From command line, I can SFTP from server A to B without entering password.
      However, from a Java client using library Jsch I am unable to make SFTP connection to server B and I am getting authentication error:



      Error occurred during SFTP. Auth fail
      com.jcraft.jsch.JSchException: Auth fail
      at com.jcraft.jsch.Session.connect(Session.java:519)
      at com.jcraft.jsch.Session.connect(Session.java:183)
      at Main.main(Main.java:15)


      Is there a way I can connect to server B for SFTP purposes using Java client without specifying password?



      Below is my Java code for reference:



      import com.jcraft.jsch.*;

      public class Main {

      public static void main(String args) {

      JSch jsch = new JSch();
      Session session = null;

      try {
      session = jsch.getSession("processor", "remoteserver.myorg.com", 22);
      session.setConfig("StrictHostKeyChecking", "no");
      System.out.println("Trying to connect...");
      session.connect();
      System.out.println("Connected successfully.");

      Channel channel = session.openChannel("sftp");
      channel.connect();
      ChannelSftp sftpChannel = (ChannelSftp) channel;
      System.out.println("Doing SFTP...");
      sftpChannel.put("/tmp/test.txt", "/some/remote/folder");
      System.out.println("Success");
      sftpChannel.exit();
      session.disconnect();

      } catch (JSchException | SftpException e) {
      System.err.println("Error occurred during SFTP. " + e.getMessage());
      e.printStackTrace();
      }

      }
      }




      This question already has an answer here:




      • Can we use JSch for SSH key-based communication?

        1 answer








      java sftp jsch ssh-keys






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 21 '18 at 11:02









      Akshay LokurAkshay Lokur

      1,54662539




      1,54662539




      marked as duplicate by Martin Prikryl sftp
      Users with the  sftp badge can single-handedly close sftp questions as duplicates and reopen them as needed.

      StackExchange.ready(function() {
      if (StackExchange.options.isMobile) return;

      $('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
      var $hover = $(this).addClass('hover-bound'),
      $msg = $hover.siblings('.dupe-hammer-message');

      $hover.hover(
      function() {
      $hover.showInfoMessage('', {
      messageElement: $msg.clone().show(),
      transient: false,
      position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
      dismissable: false,
      relativeToBody: true
      });
      },
      function() {
      StackExchange.helpers.removeMessages();
      }
      );
      });
      });
      Nov 21 '18 at 11:54


      This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.









      marked as duplicate by Martin Prikryl sftp
      Users with the  sftp badge can single-handedly close sftp questions as duplicates and reopen them as needed.

      StackExchange.ready(function() {
      if (StackExchange.options.isMobile) return;

      $('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
      var $hover = $(this).addClass('hover-bound'),
      $msg = $hover.siblings('.dupe-hammer-message');

      $hover.hover(
      function() {
      $hover.showInfoMessage('', {
      messageElement: $msg.clone().show(),
      transient: false,
      position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
      dismissable: false,
      relativeToBody: true
      });
      },
      function() {
      StackExchange.helpers.removeMessages();
      }
      );
      });
      });
      Nov 21 '18 at 11:54


      This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.


























          1 Answer
          1






          active

          oldest

          votes


















          0














          Use addIdentity() api in jsync and point to your private key file location.



          Ref:
          Can we use JSch for SSH key-based communication?



             String privateKey = "~/.ssh/id_rsa";    
          jsch.addIdentity(privateKey);
          System.out.println("identity added ");
          Session session = jsch.getSession(user, host, port);
          System.out.println("session created.");





          share|improve this answer


























          • Please do not answer duplicate questions. Vote them to be closed as duplicate instead.

            – Martin Prikryl
            Nov 21 '18 at 11:55


















          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          Use addIdentity() api in jsync and point to your private key file location.



          Ref:
          Can we use JSch for SSH key-based communication?



             String privateKey = "~/.ssh/id_rsa";    
          jsch.addIdentity(privateKey);
          System.out.println("identity added ");
          Session session = jsch.getSession(user, host, port);
          System.out.println("session created.");





          share|improve this answer


























          • Please do not answer duplicate questions. Vote them to be closed as duplicate instead.

            – Martin Prikryl
            Nov 21 '18 at 11:55
















          0














          Use addIdentity() api in jsync and point to your private key file location.



          Ref:
          Can we use JSch for SSH key-based communication?



             String privateKey = "~/.ssh/id_rsa";    
          jsch.addIdentity(privateKey);
          System.out.println("identity added ");
          Session session = jsch.getSession(user, host, port);
          System.out.println("session created.");





          share|improve this answer


























          • Please do not answer duplicate questions. Vote them to be closed as duplicate instead.

            – Martin Prikryl
            Nov 21 '18 at 11:55














          0












          0








          0







          Use addIdentity() api in jsync and point to your private key file location.



          Ref:
          Can we use JSch for SSH key-based communication?



             String privateKey = "~/.ssh/id_rsa";    
          jsch.addIdentity(privateKey);
          System.out.println("identity added ");
          Session session = jsch.getSession(user, host, port);
          System.out.println("session created.");





          share|improve this answer















          Use addIdentity() api in jsync and point to your private key file location.



          Ref:
          Can we use JSch for SSH key-based communication?



             String privateKey = "~/.ssh/id_rsa";    
          jsch.addIdentity(privateKey);
          System.out.println("identity added ");
          Session session = jsch.getSession(user, host, port);
          System.out.println("session created.");






          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Nov 21 '18 at 11:35









          Akshay Lokur

          1,54662539




          1,54662539










          answered Nov 21 '18 at 11:08









          SenthilSenthil

          8121616




          8121616













          • Please do not answer duplicate questions. Vote them to be closed as duplicate instead.

            – Martin Prikryl
            Nov 21 '18 at 11:55



















          • Please do not answer duplicate questions. Vote them to be closed as duplicate instead.

            – Martin Prikryl
            Nov 21 '18 at 11:55

















          Please do not answer duplicate questions. Vote them to be closed as duplicate instead.

          – Martin Prikryl
          Nov 21 '18 at 11:55





          Please do not answer duplicate questions. Vote them to be closed as duplicate instead.

          – Martin Prikryl
          Nov 21 '18 at 11:55





          Popular posts from this blog

          鏡平學校

          ꓛꓣだゔៀៅຸ໢ທຮ໕໒ ,ໂ'໥໓າ໼ឨឲ៵៭ៈゎゔit''䖳𥁄卿' ☨₤₨こゎもょの;ꜹꟚꞖꞵꟅꞛေၦေɯ,ɨɡ𛃵𛁹ޝ޳ޠ޾,ޤޒޯ޾𫝒𫠁သ𛅤チョ'サノބޘދ𛁐ᶿᶇᶀᶋᶠ㨑㽹⻮ꧬ꧹؍۩وَؠ㇕㇃㇪ ㇦㇋㇋ṜẰᵡᴠ 軌ᵕ搜۳ٰޗޮ޷ސޯ𫖾𫅀ल, ꙭ꙰ꚅꙁꚊꞻꝔ꟠Ꝭㄤﺟޱސꧨꧼ꧴ꧯꧽ꧲ꧯ'⽹⽭⾁⿞⼳⽋២៩ញណើꩯꩤ꩸ꩮᶻᶺᶧᶂ𫳲𫪭𬸄𫵰𬖩𬫣𬊉ၲ𛅬㕦䬺𫝌𫝼,,𫟖𫞽ហៅ஫㆔ాఆఅꙒꚞꙍ,Ꙟ꙱エ ,ポテ,フࢰࢯ𫟠𫞶 𫝤𫟠ﺕﹱﻜﻣ𪵕𪭸𪻆𪾩𫔷ġ,ŧآꞪ꟥,ꞔꝻ♚☹⛵𛀌ꬷꭞȄƁƪƬșƦǙǗdžƝǯǧⱦⱰꓕꓢႋ神 ဴ၀க௭எ௫ឫោ ' េㇷㇴㇼ神ㇸㇲㇽㇴㇼㇻㇸ'ㇸㇿㇸㇹㇰㆣꓚꓤ₡₧ ㄨㄟ㄂ㄖㄎ໗ツڒذ₶।ऩछएोञयूटक़कयँृी,冬'𛅢𛅥ㇱㇵㇶ𥄥𦒽𠣧𠊓𧢖𥞘𩔋цѰㄠſtʯʭɿʆʗʍʩɷɛ,əʏダヵㄐㄘR{gỚṖḺờṠṫảḙḭᴮᵏᴘᵀᵷᵕᴜᴏᵾq﮲ﲿﴽﭙ軌ﰬﶚﶧ﫲Ҝжюїкӈㇴffצּ﬘﭅﬈軌'ffistfflſtffतभफɳɰʊɲʎ𛁱𛁖𛁮𛀉 𛂯𛀞నఋŀŲ 𫟲𫠖𫞺ຆຆ ໹້໕໗ๆทԊꧢꧠ꧰ꓱ⿝⼑ŎḬẃẖỐẅ ,ờỰỈỗﮊDžȩꭏꭎꬻ꭮ꬿꭖꭥꭅ㇭神 ⾈ꓵꓑ⺄㄄ㄪㄙㄅㄇstA۵䞽ॶ𫞑𫝄㇉㇇゜軌𩜛𩳠Jﻺ‚Üမ႕ႌႊၐၸဓၞၞၡ៸wyvtᶎᶪᶹစဎ꣡꣰꣢꣤ٗ؋لㇳㇾㇻㇱ㆐㆔,,㆟Ⱶヤマފ޼ޝަݿݞݠݷݐ',ݘ,ݪݙݵ𬝉𬜁𫝨𫞘くせぉて¼óû×ó£…𛅑הㄙくԗԀ5606神45,神796'𪤻𫞧ꓐ㄁ㄘɥɺꓵꓲ3''7034׉ⱦⱠˆ“𫝋ȍ,ꩲ軌꩷ꩶꩧꩫఞ۔فڱێظペサ神ナᴦᵑ47 9238їﻂ䐊䔉㠸﬎ffiﬣ,לּᴷᴦᵛᵽ,ᴨᵤ ᵸᵥᴗᵈꚏꚉꚟ⻆rtǟƴ𬎎

          Why https connections are so slow when debugging (stepping over) in Java?