备份恢复gitlab

1.备份

gitlab-rake gitlab:backup:create
默认目录: /var/opt/gitlab/backups

2.复制备份文件到新服务器目录并赋权:

chmod 777 *.tar

停止相关数据连接服务

gitlab-ctl stop unicorn
gitlab-ctl stop sidekiq

3.恢复:

gitlab-rake gitlab:backup:restore BACKUP=备份文件编号
重启服务: gitlab-ctl start

你可能感兴趣的:(备份恢复gitlab)