2

当我以 jenkins 用户身份登录时,我在 ~/.ssh/id_rsa.pub 中有一个 ssh 密钥。

我已将其正确导入 bitbucket 并且它已接受密钥。

当我尝试做一个 git clone (到正确的 URL)时,我仍然得到....

Building in workspace /var/lib/jenkins/jobs/Google adwords/workspace
Checkout:workspace / /var/lib/jenkins/jobs/Google adwords/workspace - hudson.remoting.LocalChannel@2c473996
Using strategy: Default
Cloning the remote Git repository
Cloning repository origin
ERROR: Error cloning remote repo 'origin' : Could not clone git@bitbucket.org:DAVID99WORLD/assessme.git
hudson.plugins.git.GitException: Could not clone git@bitbucket.org:DAVID99WORLD/assessme.git
    at hudson.plugins.git.GitAPI.clone(GitAPI.java:268)
    at hudson.plugins.git.GitSCM$2.invoke(GitSCM.java:1122)
    at hudson.plugins.git.GitSCM$2.invoke(GitSCM.java:1064)
    at hudson.FilePath.act(FilePath.java:842)
    at hudson.FilePath.act(FilePath.java:824)
    at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1064)
    at hudson.model.AbstractProject.checkout(AbstractProject.java:1256)
    at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:589)
    at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:88)
    at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:494)
    at hudson.model.Run.execute(Run.java:1502)
    at hudson.maven.MavenModuleSetBuild.run(MavenModuleSetBuild.java:477)
    at hudson.model.ResourceController.execute(ResourceController.java:88)
    at hudson.model.Executor.run(Executor.java:236)
Caused by: hudson.plugins.git.GitException: Command "git clone --progress -o origin git@bitbucket.org:DAVID99WORLD/assessme.git /var/lib/jenkins/jobs/Google adwords/workspace" returned status code 128:
stdout: Cloning into '/var/lib/jenkins/jobs/Google adwords/workspace'...

stderr: Host key verification failed.
fatal: The remote end hung up unexpectedly

有谁知道为什么会发生这种情况?根据我读过的文档, ~/.ssh 是作为 jenkins 用户存在的正确目录。

编辑:我的 jenkins 用户在 ~/.ssh 中没有 known_hosts 文件,但我的根级用户有 - 应该吗?我可以用我的 jenkins 用户进行克隆,它根本没有提到主机作为 jenkins 用户。

4

1 回答 1

3

它可能与 known_hosts 文件无关。我认为,您必须检查 Jenkins 是否能够读取您的公共 SSH 密钥。因此,您可能需要检查:

  • 在 /etc/passwd 中为 Jenkins 用户定义的 home 匹配 ~/.ssh
  • Jenkins 用户可以访问他的主目录(所以至少 --x--x--x 在上面的所有目录中)
  • Jenkins 用户有权访问 id_rsa.pub 文件
  • Jenkins 实际上是使用 Jenkins 用户而不是例如 tomcat 用户运行的

另外,如果您删除当前的 id_rsa.pub 文件会怎样?它是否抱怨找不到要使用的公钥?

于 2012-08-23T19:06:29.263 回答