Gitlab恢复




# 停止相关数据连接服务
gitlab-ctl stop unicorn
gitlab-ctl stop sidekiq

查看备份

默认备份目录是:ll /var/opt/gitlab/backups/


# 从1393513186编号备份中恢复
gitlab-rake gitlab:backup:restore BACKUP=1393513186


# 启动Gitlab
sudo gitlab-ctl start


#有时候在还原后会出现点击project出现500现象,若出现此现象请执行下面命令:
sudo gitlab-rails runner  "Project.where.not(import_url: nil).each { |p| p.import_data.destroy if p.import_data }"

你可能感兴趣的:(Gitlab)