无法集成jenkins和git

时间:2013-08-04 07:26:38

标签: git ssh jenkins jenkins-plugins gerrit

我正在尝试整合jenkins和git。在jenkins工作配置中,我补充道 SSH://jenkins@x.x.x.x:29418 / xxx.git。当我选择现在推送或任何gerrit事件时,触发构建但由于下面的错误,构建失败。我成功配置了gerrit插件。但是git客户端插件正在抛出以下错误

 Cloning the remote Git repository
    Cloning repository ssh://jenkins@x.x.x.x:29418/xxx.git
    git --version
    git version 1.7.9.5
    ERROR: Error cloning remote repo 'xxx' : Could not clone ssh://jenkins@x.x.x.x:29418/xxx.git
    hudson.plugins.git.GitException: Could not clone ssh://jenkins@x.x.x.x:29418/xxx.git
        at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:226)
        at org.jenkinsci.plugins.gitclient.AbstractGitAPIImpl.clone(AbstractGitAPIImpl.java:57)
        at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.clone(CliGitAPIImpl.java:33)
        at hudson.plugins.git.GitSCM$2.invoke(GitSCM.java:1006)
        at hudson.plugins.git.GitSCM$2.invoke(GitSCM.java:942)
        at hudson.FilePath.act(FilePath.java:904)
        at hudson.FilePath.act(FilePath.java:877)
        at hudson.plugins.git.GitSCM.determineRevisionToBuild(GitSCM.java:942)
        at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1108)
        at hudson.model.AbstractProject.checkout(AbstractProject.java:1367)
        at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:674)
        at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:88)
        at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:579)
        at hudson.model.Run.execute(Run.java:1575)
        at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:46)
        at hudson.model.ResourceController.execute(ResourceController.java:88)
        at hudson.model.Executor.run(Executor.java:237)
    Caused by: hudson.plugins.git.GitException: Command "/usr/bin/git clone --progress -o xxx ssh://jenkins@x.x.x.x:29418/xxx.git /usr/share/tomcat7/.jenkins/jobs/xxx/workspace" returned status code 128:
    stdout: Cloning into '/usr/share/tomcat7/.jenkins/jobs/xxx/workspace'...

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

        at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:790)
        at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$100(CliGitAPIImpl.java:33)
        at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:224)
        ... 16 more
    Trying next repository
    ERROR: Could not clone repository
    java.io.IOException: Could not clone
        at hudson.plugins.git.GitSCM$2.invoke(GitSCM.java:1019)
        at hudson.plugins.git.GitSCM$2.invoke(GitSCM.java:942)
        at hudson.FilePath.act(FilePath.java:904)
        at hudson.FilePath.act(FilePath.java:877)
        at hudson.plugins.git.GitSCM.determineRevisionToBuild(GitSCM.java:942)
        at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1108)
        at hudson.model.AbstractProject.checkout(AbstractProject.java:1367)
        at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:674)
        at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:88)
        at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:579)
        at hudson.model.Run.execute(Run.java:1575)
        at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:46)
        at hudson.model.ResourceController.execute(ResourceController.java:88)
        at hudson.model.Executor.run(Executor.java:237)
    Finished: FAILURE

2 个答案:

答案 0 :(得分:3)

Jenkins用户(比如说 - jksvc)正在尝试连接到你的git服务器(比如git@myserver.example.com)。

SSH会提示您创建〜/ .ssh / known_hosts文件。

在这种情况下,尝试在命令行上以“jksvc”用户身份访问git,并接受SSH提示,如果有“是”

验证克隆是否正确创建然后触发jenkins作业

答案 1 :(得分:0)

在repo地址中尝试使用/代替: SSH://jenkins@x.x.x.x:29418 / xxx.git