2016-08-25 6 views
2

https経由でホストされているリポジトリに接続しようとしているときにjenkins gitプラグインを使用する際に問題があります。Jenkins git plugin:ピアの証明書の発行者が認識されない

Baue in Arbeitsbereich /opt/jenkins/jobs/TestJob2/workspace 
> git rev-parse --is-inside-work-tree # timeout=10 
Fetching changes from the remote Git repository 
> git config remote.origin.url https://my.host.de/group/project # timeout=10 
Fetching upstream changes from https://my.host.de/group/project 
> git --version # timeout=10 
using GIT_ASKPASS to set credentials Jenkins at my.host.de 
> git fetch --tags --progress https://my.host.de/group/project +refs/heads/*:refs/remotes/origin/* 
ERROR: Error fetching remote repo 'origin' 
hudson.plugins.git.GitException: Failed to fetch from https://my.host.de/group/project 
    at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:766) 
    at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1022) 
    at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1053) 
    at hudson.scm.SCM.checkout(SCM.java:485) 
    at hudson.model.AbstractProject.checkout(AbstractProject.java:1269) 
    at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:607) 
    at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86) 
    at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:529) 
    at hudson.model.Run.execute(Run.java:1738) 
    at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43) 
    at hudson.model.ResourceController.execute(ResourceController.java:98) 
    at hudson.model.Executor.run(Executor.java:410) 
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://my.host.de/group/project +refs/heads/*:refs/remotes/origin/*" returned status code 128: 
stdout: 
stderr: fatal: unable to access 'https://my.host.de/group/project/': Peer's Certificate issuer is not recognized. 

    at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:1709) 
    at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:1438) 
    at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$300(CliGitAPIImpl.java:63) 
    at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:314) 
    at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:764) 
    ... 11 more 
ERROR: null 
Finished: FAILURE 

私はSSHを使用できません。 証明書は大丈夫です。

curl -Lvは表示されていません。

sshを使用してログインしているときにリポジトリをローカルに作成することもできますが、エラーメッセージも表示されません。

変更するスイッチはどこにありますか?

genプロパティhttp.sslVerifyをfalseに設定すると、jenkinsが実行されているユーザーに対してこの動作を変更できますが、これは回避策に過ぎません。

答えて

2

私はそのような問題について調査するのに1時間を費やしました。私がテストしたことは、マスタ上のすべてがカスタムCAがシステムに構成されていることでうまくいくということでした。残念ながら、残念ながら、ALLスレーブは、適切なgitconfigまたはCA証明書をインストールする必要があります。

+1

私の場合は何が助けられたのか覚えていませんが、あなたの答えは正当だと思われます;) – Zarathustra

関連する問題