1

我正在将代码上传到我的 gitlabs 存储库并且收到此错误

Counting objects: 29295, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (21490/21490), done.
Writing objects: 100% (29295/29295), 31.10 MiB | 167.62 MiB/s, done.
Total 29295 (delta 6225), reused 29295 (delta 6225)
error: RPC failed; HTTP 502 curl 22 The requested URL returned error: 502 Bad Gateway
fatal: The remote end hung up unexpectedly
fatal: The remote end hung up unexpectedly
Everything up-to-date

无法弄清楚如何解决这个问题,请帮助解决这个问题。

4

2 回答 2

3

502 Bad Gateway 错误意味着您的请求成功地将消息发送到某种代理,但无法访问其背后的服务器或发送无效响应。与其他 5xx 错误一样,它表示客户端无法独立修复的服务器端问题。

我相信 GitLab 和许多 Web 应用程序一样,在主 Web 应用程序前面使用 nginx。可能是主 Web 应用程序崩溃了,或者发生了其他问题,但无论如何,您都需要联系 GitLab 实例的管理员并要求他们解决问题;你无法修复它。

如果您要托管自己的 GitLab 实例,那么我建议您确保服务正在运行并查看日志以查看问题所在。

于 2020-08-22T21:10:48.063 回答
0

我使用 SSH 解决了这个问题,我想如果有人遇到这个问题,请尝试使用 ssh 克隆 repo,然后尝试推送代码:)

于 2020-08-25T07:39:30.110 回答