【发布时间】:2020-02-09 05:06:08
【问题描述】:
我正在通过chef 安装新服务器
并将 ssh 私钥和公钥放入其中。
创建后,我通过jenkins 将应用程序部署到它上面并运行bundle install,由于
Host key verification failed.
fatal: The remote end hung up unexpectedly
如果我 ssh 进入服务器并自己运行 bundle install 命令,我会收到
The authenticity of host 'bitbucket.org (104.192.143.1)' can't be established.
RSA key fingerprint is 97:8c:1b:f2:6f:14:6b:5c:3b:ec:aa:46:46:74:7c:40.
Are you sure you want to continue connecting (yes/no)?
github也一样
The authenticity of host 'github.com (192.30.252.129)' can't be established.
RSA key fingerprint is 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48.
Are you sure you want to continue connecting (yes/no)? yes
我按是,捆绑完成。最重要的是,如果我现在再次运行 jenkins 作业,则捆绑成功完成。
任何想法,如何通过 jenkins 自动批准这些远程服务器的真实性?
【问题讨论】:
标签: bash git jenkins ssh bundler