“com.jcraft.jsch.JSchException: Auth fail”与工作密码
在尝试将文件上传到我们的服务器时,我收到以下异常
com.jcraft.jsch.JSchException: Auth fail
at com.jcraft.jsch.Session.connect(Session.java:464)
at com.jcraft.jsch.Session.connect(Session.java:158)
at FtpService.transferFileToReciever(FtpService.java:80)
at FtpService.transferFileToReciever(FtpService.java:54)
at FtpService.transferFileToRecievers(FtpService.java:44)
at FtpService.transferSingeFile(FtpService.java:241)
at FtpService.main(FtpService.java:26)
Auth fail
函数传输文件到从源文件接收的部分是
JSch jsch = new JSch();
jsch.addIdentity("/root/.ssh/id_dsa");
Session session = jsch.getSession(username, host, 22);
session.setUserInfo(serverinfo);
session.connect(); //geting exception here
boolean ptimestamp = true;
密码是有效的,因为我可以使用ssh登录,但是使用JSCh,即使提供密钥,用户名和密码也不起作用。使用 java 版本“1.6.0_25”的id_dsa密钥。可能是什么错误?
找到了其他类似的问题,但不是答案。提前致谢。