`
hai0378
  • 浏览: 536689 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

gitlab 500 服务器错误

阅读更多

http://stackoverflow.com/questions/36546774/gitlab-repository-corrupted-showing-500-error-on-frontend

 

1. # cd gitlab/repositories/<namespace>/<reponame>.git 

2. # git fsck
If any error like below
error: object file objects/11/fbf0dfb1a54283e84044b5e99230efbafd77d8 is empty
error: object file objects/11/fbf0dfb1a54283e84044b5e99230efbafd77d8 is empty
fatal: loose object 11fbf0dfb1a54283e84044b5e99230efbafd77d8 (stored in objects/11/fbf0dfb1a54283e84044b5e99230efbafd77d8) is corrupt

3.  # find . –size 0 –delete  
This will delete all files which has 0 byte size and corrupt

4.  # git fsck
Checking object directories: 100% (256/256), done.
Checking objects: 100% (4970/4970), done.
error: HEAD: not a commit
error: refs/heads/master: not a commit
dangling commit de516dd3d99d13147b6e2f946fe5b8c0660e4eed

5.   Try to push code from local without add and commit 
# git push origin <branch>
If got below error
remote: error: Could not read 5329f756010fad47026f112dc7126bdaa2f9ad7f
remote: fatal: Failed to traverse parents of commit  8eecd866caa916a3b2e8550153f0bb5a54a28919
remote: aborting due to possible repository corruption on the remote side.
fatal: protocol error: bad pack header

6.  Go to cd gitlab/repositories/<namespace>/<reponame>.git
# rm –fr ref/head/<branchname>
# git fsck
notice: HEAD points to an unborn branch (master)
Checking object directories: 100% (256/256), done.
notice: No default references
dangling commit eb84ebc9010ea3d3d5646b4eab1bacd358178fbd

7.  Try to push code from local without add and commit 
# git push origin <branch>

具体执行指令如下:

df -h
 2000  cd /var/
 2001  ls
 2002  cd opt/
 2003  ls
 2004  cd gitlab/
 2005  ls
 2006  cd git-data/
 2007  ls
 2008  cd repositories/
 2009  ls
 2010  cd htk-app/
 2011  ls
 2012  ls -l
 2013  ls -ll
 2014  cd ios.git/
 2015  ls
 2016  ls -ll
 2017  git fsck
 2018  find . –size 0 –delete
 2019  git fsck
 2020  find . -size 0 -delete
 2021  git fsck
 2022  git push origin
 2023  ls
 2024  pwd
 2025  cd refs/heads/
 2026  cd ..
 2027  cd head
 2028  cd heads
 2029  ls
 2030  cd ../..
 2031  ls
 2032  rm -fr refs/heads/develop1.1 
 2033  git fsck
 2034  git push origin develop1.1
 2035  git push origin
 2036  history

分享到:
评论

相关推荐

    gitlab服务器宕机,如何恢复.doc

    然而,当GitLab服务器遭遇宕机时,可能会导致开发者无法正常进行代码的提交和下载,这对任何依赖GitLab进行日常开发工作的团队来说都是一个重大的挑战。本文将详细解释如何在GitLab服务器宕机后恢复代码仓库,确保...

    gitlab提交时间显示错误问题解决.docx

    完成源码修改后,需要将更新的代码推送到GitLab服务器。如果你的GitLab部署在Docker容器中,可以使用`docker cp`命令将本地的修正版代码复制到容器内的相应位置,如`/opt/gitlab/embedded/service/gitlab-rails/...

    VsCode首次使用Gitlab配置和错误注意

    这样做的好处是绕过了域名解析的环节,直接通过IP地址访问Gitlab服务器,从而避免了域名解析失败导致的问题。 第二个问题是无法将本地修改的文件推送到Gitlab仓库。这通常是因为本地仓库与远程仓库不同步造成的。在...

    gitlab实现持续集成

    GitLab Runner可以独立部署,也可以直接安装在GitLab服务器上。通过GitLab Runner,可以运行在多种操作系统上,包括Linux、macOS、Windows等,支持多种虚拟化和容器技术,比如Docker、Kubernetes等。 在GitLab中...

    python3通过gitlab api批量新建gitlab仓库

    首先,你需要安装`python-gitlab`库,它是一个Python封装的GitLab API客户端,方便我们与GitLab服务器进行交互。你可以使用pip来安装: ```bash pip install python-gitlab ``` 在使用GitLab API前,确保你已经有...

    GitLab出现502报错的完整处理方法.docx

    然而,在使用过程中,有时会遇到“502 Bad Gateway”的错误,这通常意味着GitLab 服务器无法与后端服务(如 PostgreSQL 数据库或 Nginx 反向代理)正常通信。以下是一份处理 GitLab 502 错误的详细步骤和相关知识: ...

    gitlab10汉化包

    5. **配置和部署**:成功汉化后,将更新后的 GitLab 安装包部署到服务器上,配置好环境,以便团队成员可以使用中文版的 GitLab 进行开发协作。 6. **博客教程**:博主提到可以查看其博客获取汉化教程,这意味着博主...

    java-gitlab-api-master.zip

    Java GitLab API 是一个强大的工具,允许开发者通过Java语言与GitLab服务器进行交互,执行各种操作,如管理项目、用户、仓库等。`java-gitlab-api-master.zip`这个压缩包包含了一个Java库,用于实现对GitLab API的...

    使用python3通过python-gitlab的API来获取gitlab的仓库、用户等信息

    在`get-gitInfo.py`脚本中,首先你需要导入`python-gitlab`模块,并创建一个连接到GitLab服务器的实例。通常,这需要提供你的私人访问令牌(Personal Access Token, PAT)作为认证方式: ```python import gitlab ...

    redmine_gitlab_hook plugin

    接着,在 GitLab 仓库的设置中,添加一个新的 Web Hook,URL 指向 Redmine 服务器上插件的回调地址。配置完成后,GitLab 仓库的每次变动都会触发动态同步到 Redmine。 使用 Redmine GitLab Hook 插件可以带来多方面...

    sonar gitlab 认证插件

    4. **配置插件**:设置插件的配置参数,包括GitLab服务器的URL、API令牌、默认项目组等。 5. **测试连接**:确保SonarQube能成功与GitLab通信,可以通过插件提供的测试功能进行验证。 **安全性考虑** 使用此插件时...

    Gitlab备份和恢复操作记录(个人精华版)

    1. **准备环境**:确保有足够的磁盘空间来存储备份文件,并且确认你有Gitlab服务器的管理员权限。 2. **执行备份**:在Gitlab服务器上运行命令 `sudo gitlab-rake gitlab:backup:create`。这将创建一个包含所有必要...

    Gitlab备份及迁移恢复

    最后,通过访问新的GitLab服务器的IP地址加上端口号(默认为80)来确认数据是否已经成功迁移: ``` 新的IP地址 + 端口号 ``` #### 三、总结 通过对GitLab进行备份及迁移恢复的操作,我们可以有效地保护项目的...

    Jenkins和gitlab.zip

    4. **GitLab Runner**: 安装并配置GitLab Runner,Runner是执行`.gitlab-ci.yml`中定义的任务的实体,它可以是本地机器,也可以是云服务器。 ### Jenkins与GitLab集成 1. **Pipeline as Code**: 在GitLab的`....

    Vs2017迁移gitlab上的仓储

    本文将详细介绍如何在Visual Studio 2017中管理和操作来自GitLab的代码仓库,包括连接、克隆、存储库设置以及推送分支到服务器等关键步骤。 #### 一、准备工作 在进行迁移之前,请确保已经安装了Visual Studio ...

    Flutter4GitLab.zip

    在Flutter4GitLab项目中,开发人员需要熟悉GitLab的API接口,以便于与GitLab服务器进行通信。GitLab提供了RESTful API,允许开发者获取项目信息、提交代码、管理分支、执行CI/CD流程等。通过使用http包或者其他网络...

    jenkins如何获取gitlab上的代码.docx

    点击“添加GitLab服务器”,输入连接名称和GitLab服务器的URL。对于证书,选择“Jenkins”,类型选择“GitLab API”,在API Token字段中粘贴之前生成的个人访问令牌。ID和描述可以使用与GitLab中相同的描述。最后,...

    gitlab发送邮件报错(554)

    1. **SMTP服务器配置错误**:检查GitLab配置文件中的SMTP设置,确保用户名、密码、端口和服务器地址等信息准确无误。 2. **IP被封锁**:如果发送邮件过于频繁或者被误判为垃圾邮件来源,163邮箱可能会将你的IP列入...

    gitlab配置

    对于想要在生产环境中设置GitLab服务器的用户来说,了解其安装过程及注意事项至关重要。 ##### 1.1 安装指南选择 - **分支选择**:安装前需确保从正确的GitLab版本分支查看安装指南。通常应选择最新稳定版本的分支...

    gitlab-ce_7.10.5~omnibus-1_amd64.rar

    GitLab 是一个开源的版本控制系统,它提供了与GitHub 类似的功能,包括代码托管、问题跟踪、持续集成(CI...使用这个安装包,用户可以在本地或者私有服务器上快速搭建自己的GitLab实例,享受GitLab带来的各种便捷功能。

Global site tag (gtag.js) - Google Analytics