Gitlab数据备份与恢复

搭建个人Gitlab仓库可以更好地维护迭代频繁的代码或者文字方案,为确保重要数据的安全性,定期备份Gitlab数据是非常重要的。

参考教程:Linux搭建Gitlab代码仓库

第一步 备份数据(数据库、用户、用户组、用户密钥、权限等)

[root@wanghualang ~]# gitlab-rake gitlab:backup:create
第二步 查看备份文件(1581573475_2020_02_13_12.7.5为备份编号)

[root@wanghualang ~]# ls /var/opt/gitlab/backups/
1581573475_2020_02_13_12.7.5_gitlab_backup.tar
第三步 停止数据连接

[root@wanghualang ~]# gitlab-ctl stop unicorn
[root@wanghualang ~]# gitlab-ctl stop sidekiq
第四步 恢复数据(恢复指定备份编号),也可以迁移到其它服务器上进行恢复

[root@wanghualang ~]# gitlab-rake gitlab:backup:restore BACKUP=1581573475_2020_02_13_12.7.5

你可能感兴趣的:(Gitlab数据备份与恢复)