TeamCity的代理错误“未能在代理执行结账”(TeamCity agent error “fai

2019-07-29 15:54发布

我正在我的TeamCity 7服务器和代理在MacOS。 我的回购在GitHub上。 我使用ssh和我知道的配置是否正确,因为测试是成功的。

当我使用VCS检出模式“自动在服务器上”,但是当我使用VCS结帐模式“上自动代理”我得到这个错误的构建工作正常。

[13:40:35][Updating sources] Failed to perform checkout on agent: '/usr/bin/git fetch --progress origin +refs/heads/master:refs/remotes/origin/master' command failed.
stderr: java.io.IOException: Authentication failed
    at org.jetbrains.git4idea.ssh.SSHMain.authenticate(SSHMain.java:275)
    at org.jetbrains.git4idea.ssh.SSHMain.start(SSHMain.java:159)
    at org.jetbrains.git4idea.ssh.SSHMain.main(SSHMain.java:139)
fatal: The remote end hung up unexpectedly

我在想什么?

Answer 1:

尝试添加teamcity.git.use.native.ssh = TRUE作为配置参数为您构建配置。

这是什么帮我解决了类似的问题。 我从中学到这一招在这里 。



Answer 2:

什么一点也不明显,我是在服务器上的默认私钥复制到代理和使用存在。 我第一次尝试是徒劳私钥添加到代理正在运行的(显然是代理计算机上)的用户。 但后来我加入了私钥到已在服务器计算机上运行TeamCity的用户,然后在代理端结账开始工作。

我还使用了teamcity.git.use.native.ssh=true属性,但我不认为它与这个特定问题的帮助。

这种信息的唯一痕迹是在此评论 。



文章来源: TeamCity agent error “failed to perform checkout on agent”