GitLab备份与恢复测试(基于Docker)

GitLab环境准备

bash 复制代码
docker run --name gitlab \
-p 2022:22 -p 2080:80 -p 2443:443 -d \
-v /opt/gitlab/config:/etc/gitlab \
-v /opt/gitlab/gitlab/logs:/var/log/gitlab \
-v /opt/gitlab/gitlab/data:/var/opt/gitlab \
gitlab/gitlab-ce:16.2.1-ce.0

备份

1.修改配置文件/opt/gitlab/config/gitlab.rb

bash 复制代码
gitlab_rails['manage_backup_path'] = true
gitlab_rails['backup_path'] = "/var/opt/gitlab/backups"
# gitlab_rails['backup_gitaly_backup_path'] = "/opt/gitlab/embedded/bin/gitaly-backup"

###! Docs: https://docs.gitlab.com/ee/raketasks/backup_restore.html#backup-archive-permissions
gitlab_rails['backup_archive_permissions'] = 0644

# gitlab_rails['backup_pg_schema'] = 'public'

###! The duration in seconds to keep backups before they are allowed to be deleted
gitlab_rails['backup_keep_time'] = 604800

2.重新加载配置

bash 复制代码
docker exec -t gitlab gitlab-ctl reconfigure

3.备份应用程序

bash 复制代码
docker exec -t gitlab gitlab-backup create STRATEGY=copy

4.备份配置

bash 复制代码
docker exec -t gitlab /bin/bash -c 'gitlab-ctl backup-etc'

恢复

1.启动gitlab

bash 复制代码
docker run --name gitlab-bak1 \
-p 2022:22 -p 2080:80 -p 2443:443 -d \
-v /opt/gitlab_bak1/config:/etc/gitlab \
-v /opt/gitlab_bak1/logs:/var/log/gitlab \
-v /opt/gitlab_bak1/data:/var/opt/gitlab \
gitlab/gitlab-ce:16.2.1-ce.0

2.修改配置文件/opt/gitlab_bak1/config/gitlab.rb

bash 复制代码
gitlab_rails['manage_backup_path'] = true
gitlab_rails['backup_path'] = "/var/opt/gitlab/backups"
# gitlab_rails['backup_gitaly_backup_path'] = "/opt/gitlab/embedded/bin/gitaly-backup"

###! Docs: https://docs.gitlab.com/ee/raketasks/backup_restore.html#backup-archive-permissions
gitlab_rails['backup_archive_permissions'] = 0644

# gitlab_rails['backup_pg_schema'] = 'public'

###! The duration in seconds to keep backups before they are allowed to be deleted
gitlab_rails['backup_keep_time'] = 604800

3.重新加载配置

bash 复制代码
docker exec -t gitlab-bak1 gitlab-ctl reconfigure

4.复制备份文件到2指定的目录

bash 复制代码
cp /opt/gitlab/gitlab/data/backups/1705891184_2024_01_22_16.2.1_gitlab_backup.tar /opt/gitlab_bak1/data/backups/

5.停止连接到数据库的进程

bash 复制代码
docker exec -it gitlab-bak1 gitlab-ctl stop puma
docker exec -it gitlab-bak1 gitlab-ctl stop sidekiq
docker exec -it gitlab-bak1 gitlab-ctl status

6.恢复,名称中省略了_gitlab_backup.tar

bash 复制代码
docker exec -it gitlab-bak1 gitlab-backup restore BACKUP=1705891184_2024_01_22_16.2.1

7.恢复gitlab-secrets文件

bash 复制代码
tar -xf /opt/gitlab/config/config_backup/gitlab_config_1705891508_2024_01_22.tar -C /tmp/ && mv -f /tmp/etc/gitlab/gitlab-secrets.json /opt/gitlab_bak1/config/

8.重启gitlab容器

bash 复制代码
docker restart gitlab-bak1

9.检查

bash 复制代码
docker exec -it gitlab-bak1 gitlab-rake gitlab:check SANITIZE=true

参考链接

官方文档: https://docs.gitlab.com/omnibus/settings/backups.html

gitlab数据及用户迁移: https://blog.csdn.net/IT_shinchan/article/details/130783545?utm_medium=distribute.pc_relevant.none-task-blog-2defaultbaidujs_baidulandingword~default-4-130783545-blog-122261961.235v40pc_relevant_anti_t3&spm=1001.2101.3001.4242.3&utm_relevant_index=5

相关推荐
Eric.Lee20213 小时前
docker 启动停止命令
运维·docker·容器
苏渡苇5 小时前
5 分钟跑起 Redis(Docker 版)
数据库·redis·缓存·docker·redis入门
深念Y7 小时前
赛米尼M02/海纳斯HiNAS系统-WiFi驱动安装教程
运维·服务器·网络·docker·nas·机顶盒·hinas
小义_8 小时前
【Kubernetes】(五) pod2
linux·云原生·容器·kubernetes
刘某的Cloud9 小时前
docker commit 封装镜像
运维·docker·容器·image
古城小栈10 小时前
Docker 下配置 Pgsql 主从复制详细步骤指南
运维·docker·容器
雨奔10 小时前
Kubernetes 对象标识详解:Name、UID、Label
云原生·容器·kubernetes
何中应11 小时前
Docker-Compose环境配置&使用
运维·docker·容器
heimeiyingwang11 小时前
【无标题】
网络·缓存·docker·性能优化·架构
牛奶咖啡1312 小时前
Docker容器实践——docker部署应用系统
docker·云计算·portainer·docker容器的使用流程·docker虚拟化云桌面·nginx可视化反向代理工具·构建服务器监控探针