gpt4 book ai didi

git - Jenkins 使用 Git 和 Deploy Key 构建

转载 作者:太空狗 更新时间:2023-10-29 13:18:15 26 4
gpt4 key购买 nike

我将 git 插件添加到 Jenkins。我在构建服务器上以 jenkins 用户的身份生成了一个公钥。我将此 key 作为部署 key 添加到 github。我添加了带有 jenkins 名称和电子邮件的全局 git 属性,并且电子邮件与公钥末尾的内容相匹配。

当 Jenkins 尝试从 git 存储库(托管在 Github)中 pull 数据时,我得到以下信息:

Started by user anonymous
Building in workspace /var/lib/jenkins/jobs/Test Deployment/workspace
Checkout:workspace / /var/lib/jenkins/jobs/Test Deployment/workspace - hudson.remoting.LocalChannel@9ba3afe
Using strategy: Default
Cloning the remote Git repository
Cloning repository origin
ERROR: Error cloning remote repo 'origin' : Could not clone git@github.com:GenRocket/GenRocket.git
hudson.plugins.git.GitException: Could not clone git@github.com:GenRocket/GenRocket.git
at hudson.plugins.git.GitAPI.clone(GitAPI.java:245)
at hudson.plugins.git.GitSCM$2.invoke(GitSCM.java:1121)
at hudson.plugins.git.GitSCM$2.invoke(GitSCM.java:1063)
at hudson.FilePath.act(FilePath.java:839)
at hudson.FilePath.act(FilePath.java:821)
at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1063)
at hudson.model.AbstractProject.checkout(AbstractProject.java:1218)
at hudson.model.AbstractBuild$AbstractRunner.checkout(AbstractBuild.java:586)
at hudson.model.AbstractBuild$AbstractRunner.run(AbstractBuild.java:475)
at hudson.model.Run.run(Run.java:1438)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:46)
at hudson.model.ResourceController.execute(ResourceController.java:88)
at hudson.model.Executor.run(Executor.java:239)
Caused by: hudson.plugins.git.GitException: Command "git clone --progress -o origin git@github.com:GenRocket/GenRocket.git /var/lib/jenkins/jobs/Test Deployment/workspace" returned status code 128:
stdout: Cloning into /var/lib/jenkins/jobs/Test Deployment/workspace...

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

不确定问题出在哪里,或者我忘记了有关配置的内容。任何帮助表示赞赏。如果您需要更多详细信息,请告诉我。

最佳答案

对于权限被拒绝的错误,您需要确保您使用的是您创建的 key 。为此,请在 ~/.ssh 目录中创建一个名为“config”的文件。使用以下内容填充配置文件:

  • 主机名 github.com
  • 用户 git
  • IdentityFile ~/.ssh/id_rsa
  • IdentitiesOnly 是

只需确保 IdentityFile 值指向您的 key 。 :)

使用以下内容验证:ssh -vT git@github.com

关于git - Jenkins 使用 Git 和 Deploy Key 构建,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11040881/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com