【发布时间】:2013-02-16 22:13:17
【问题描述】:
jenkins有问题,设置“git”,显示如下错误:
Failed to connect to repository : Command "git ls-remote -h https://person@bitbucket.org/person/projectmarket.git HEAD" returned status code 128:
stdout:
stderr: fatal: Authentication failed
我已经用 ssh 测试过:
git@bitbucket.org:person/projectmarket.git
这是错误:
Failed to connect to repository : Command "git ls-remote -h git@bitbucket.org:person/projectmarket.git HEAD" returned status code 128:
stdout:
stderr: Host key verification failed.
fatal: The remote end hung up unexpectedly
我也使用“SSH 密钥”完成了这些步骤。
在 Jenkins 下登录
sudo su jenkins
将您的 github 密钥复制到 Jenkins .ssh 文件夹
cp ~/.ssh/id_rsa_github* /var/lib/jenkins/.ssh/
重命名键
mv id_rsa_github id_rsa
mv id_rsa_github.pub id_rsa.pub
但仍然无法在 jenkins 中使用 git 存储库。
感谢帮助!
【问题讨论】:
标签: jenkins