首页 > 其他 > 详细

GitLab项目批量备份,迁移

时间:2019-05-27 14:35:00      阅读:132      评论:0      收藏:0      [点我收藏+]
一. 创建备份文件

gitlab-rake gitlab:backup:create

使用以上命令会在/var/opt/gitlab/backups目录下创建一个名称类似为1547087542_2019_01_10_11.0.3_gitlab_backup.tar的压缩包, 这个压缩包就是Gitlab整个的完整部分, 其中开头的1547087542_2019_01_10_11.0.3是备份创建的日期

scp /var/opt/gitlab/backups/1547087542_2019_01_10_11.0.3_gitlab_backup.tar 192.168.61.28:/var/opt/gitlab/backups/

目标机器操作:

chmod 777 /var/opt/gitlab/backups/1547087542_2019_01_10_11.0.3_gitlab_backup.tar

gitlab-ctl stop unicorn
gitlab-ctl stop sidekiq
gitlab-rake gitlab:backup:restore BACKUP=1547087542_2019_01_10_11.0.3
gitlab-ctl start

二.定时备份:

添加定时任务,每天凌晨两点,执行gitlab备份

0 2 * root /opt/gitlab/bin/gitlab-rake gitlab:backup:create CRON=1

GitLab项目批量备份,迁移

原文:https://blog.51cto.com/shunzi115/2400685

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!