Getting “Auth cancel” when authenticating using password with JSch

旧巷老猫 提交于 2019-12-06 13:45:35

You have a keyboard interactive authentication set as preferred authentication method (it's the default).

Yet, you do not implement a prompt for credentials. The setPassword is not (and cannot) be used for the keyboard interactive authentication.

If you actually want to use a password authentication, make it preferred:

config.put("PreferredAuthentications", "password");

Needless to say: If you care about security, do not use StrictHostKeyChecking=no!

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!