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 浏览: 92
这个错误通常表示在执行 "git fetch" 命令时出现了问题。返回状态码 128 可能有几种原因,比如:
1. 仓库地址不正确:请确保你的仓库地址是正确的,并且能够通过网络访问。
2. 认证问题:如果你的仓库需要认证,确保你提供了正确的用户名和密码或者 SSH 密钥。
3. 权限问题:检查你是否具有足够的权限来执行 git 操作。如果不确定,请联系仓库管理员。
4. 网络连接问题:请确保你的网络连接正常,可以尝试重新执行命令或者检查网络设置。
如果以上方法都无法解决问题,你可以查看完整的错误信息和日志,以获取更多的上下文信息,帮助定位问题所在。
相关问题
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日志文件以获取更多详细的错误信息,并根据需要进行进一步的故障排除。
阅读全文