ant使用JSCH.jar插件时,执行scp上传或者sshexec时报错
com.jcraft.jsch.JSchException: reject HostKey
原因是主机信任问题,设置trust="true"
则信任所有主机
// 增加trust="true"参数 ,sshexec 同理
<scp file="${dist.dir}/${war.file}" todir="${deploy.username}:${deploy.password}@${deploy.server}:${deploy.dir}" trust="true"/>
-
报错
-
官方文档