1)Gitlab的备份目录路径设置
1 2 3 4 5 6 7 8 9 10 11 12 |
[root@code-server ~] # vim /etc/gitlab/gitlab.rb
gitlab_rails[ 'manage_backup_path' ] = true
gitlab_rails[ 'backup_path' ] = "/data/gitlab/backups" //gitlab 备份目录
gitlab_rails[ 'backup_archive_permissions' ] = 0644 // 生成的备份文件权限
gitlab_rails[ 'backup_keep_time' ] = 7776000 // 备份保留天数为3个月(即90天,这里是7776000秒)
[root@code-server ~] # mkdir -p /data/gitlab/backups
[root@code-server ~] # chown -R git.git /data/gitlab/backups
[root@code-server ~] # chmod -R 777 /data/gitlab/backups
如上设置了gitlab备份目录路径为 /data/gitlab/backups ,最后使用下面命令重载gitlab配置文件,是上述修改生效!
root@code-server ~] # gitlab-ctl reconfigure
|