Caused by: hudson.plugins.git.GitException: Command git fetch --tags --progress http://git.dsi-log.cn:2020/buta/ctm.git +refs/heads/*:refs/remotes/origin/* returned status code 128
时间: 2023-08-04 07:08:52 浏览: 143
这个错误是由于执行的 Git 命令返回了状态码 128 导致的。状态码 128 通常表示执行的命令出现了错误,但具体的错误原因需要查看更详细的日志或错误信息来确定。在这种情况下,你可以尝试以下几个步骤来排查问题:
1. 确保 Git 命令的参数和 URL 都正确无误。检查是否拼写错误,或者是否有权限访问该仓库。
2. 检查网络连接是否正常。如果网络连接不稳定或存在防火墙等限制,可能会导致 Git 命令失败。可以尝试使用其他网络或者通过代理来执行命令。
3. 查看详细的错误日志。有时候 Git 命令会输出更详细的错误信息,可以查看日志来获取更多的上下文信息,有助于问题的排查和解决。
如果以上步骤都没有解决问题,建议提供更多的上下文信息,例如完整的错误日志、执行的命令和操作系统等,以便更准确地分析和解决这个问题。
相关问题
Fetching upstream changes from git@github. com:a792883583/treeHoleScore.git > /usr/bin/git --version # timeout=10 > git --version # 'git version 1.8.3.1' using GIT _ASKPASS to set credentials github > /usr/bin/git fetch --tags --progress git@github. com:a792883583/treeHoleScore.git +refs/heads/*:refs/remotes/origin/* # timeout=10 ERROR: Error fetching remote repo 'origin' hudson. plugins.git.GitException: Failed to fetch from git@github. com:a792883583/treeHoleScore.git at hudson. plugins . git .GitSCM. fetchFrom(GitSCM. java:1003) at hudson. plugins .git .GitSCM. retrieveChanges(GitSCM. java:1245) at hudson.plugins.git.GitsCM. checkout(GitSCM. java:1309) at hudson.scm. SCM. checkout(SCM. java:540) at hudson. mode1. AbstractProject . checkout(AbstractProject . java:1240) at hudson. model AbstractBuild$AbstractBuildExecution. def aultCheckout (AbstractBuild. java:649) at jenkins .scm. SCMCheckoutStrategy . checkout(SCMCheckoutStrategy . java:85) at hudson . model. AbstractBuild$AbstractBuildExecution. run(AbstractBuild. java:521) at hudson.model . Run. execute(Run. java:1900) at hudson.model. FreeSty1eBuild.run(FreeStyleBuild.java:44) at hudson. model. ResourceController . execute(ResourceController . java:101) at hudson. model. Executor .run(Executor. java:442) Caused by: hudson. plugins.git .GitException: Command "/usr/bin/git fetch --tags --progress git@github . com: a792883583/treeHoleScore.git +refs/heads/* :refs/remotes/origin/*" returned status code 128: stdout: stderr: Host key verification failed. fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. at org.jenkinsci .plugins.gitclient .CliGitAPIImp1.1aunchCommandIn(CliGitAPImp1.java:2734) at org.jenkinsci .plugins.gitclient .CliGitAPIImp1.1aunchCommandWithCredentials(CliGitAPIImpl.java:2111) at org.jenkinsci.plugins . gitclient .CliGitAPIImp1$1. execute(CliGitAPIImp1.java:623) at hudson.p1ugins . git .GitSCM. fetchFrom (GitSCM. java:1001) 11 more ERROR: Error fetching remote repo ' origin' Finished: FAILURE
"Fetching upstream changes from git@github.com:a792883583/treeHoleScore.git" 意思是从 "git@github.com:a792883583/treeHoleScore.git" 这个地址获取最新的更改。
"/usr/bin/git --version" 意思是在本地执行 "git" 命令,并使用 "--version" 选项来查看当前 Git 版本。
下载Jenkins插件时候报错 Caused: java.io.IOException: Failed to load https://updates.jenkins.io/download/plugins/jobConfigHistory/1212.vd4470d08ff12/jobConfigHistory.hpi to /var/lib/jenkins/plugins/jobConfigHistory.jpi.tmp at hudson.model.UpdateCenter$UpdateCenterConfiguration.download(UpdateCenter.java:1285) Caused: java.io.IOException: Failed to download from https://updates.jenkins.io/download/plugins/jobConfigHistory/1212.vd4470d08ff12/jobConfigHistory.hpi (redirected to: https://get.jenkins.io/plugins/jobConfigHistory/1212.vd4470d08ff12/jobConfigHistory.hpi)
根据错误消息,下载Jenkins插件时出现了问题。错误消息指出,在将插件下载到目标目录"/var/lib/jenkins/plugins/"时发生了IO异常。具体来说,它尝试从"https://updates.jenkins.io/download/plugins/jobConfigHistory/1212.vd4470d08ff12/jobConfigHistory.hpi"下载插件文件,但下载失败。
错误消息中还提到,下载请求被重定向到了"https://get.jenkins.io/plugins/jobConfigHistory/1212.vd4470d08ff12/jobConfigHistory.hpi"。这可能是因为源服务器发生了重定向或URL已更改。
为了解决此问题,您可以尝试以下步骤:
1. 检查网络连接:确保您的服务器具有可访问外部网络的连接,并且没有任何防火墙或代理阻止了访问。
2. 更新Jenkins Update Center:在Jenkins管理界面中,转到“系统管理”>“管理插件”>“高级”选项卡,并将“更新站点”更改为"https://updates.jenkins.io/update-center.json"。然后尝试重新安装插件。
3. 手动下载插件:在浏览器中打开"https://get.jenkins.io/plugins/jobConfigHistory/1212.vd4470d08ff12/jobConfigHistory.hpi"链接,并手动将插件文件下载到目标目录"/var/lib/jenkins/plugins/"。
如果问题仍然存在,请检查Jenkins日志文件以获取更多详细的错误信息,并根据需要进行进一步的故障排除。
阅读全文