Added `chown git` to the backup tar to prevent permission denied errors.

This commit is contained in:
Craig Fisher 2018-09-13 17:21:05 +00:00
parent e91a52619f
commit 1ff3ef1c35
1 changed files with 2 additions and 1 deletions

View File

@ -591,9 +591,10 @@ This procedure assumes that:
First make sure your backup tar file is in the backup directory described in the
`gitlab.rb` configuration `gitlab_rails['backup_path']`. The default is
`/var/opt/gitlab/backups`.
`/var/opt/gitlab/backups`. It needs to be owned by the `git` user.
```shell
chown git.git 11493107454_2018_04_25_10.6.4-ce_gitlab_backup.tar
sudo cp 11493107454_2018_04_25_10.6.4-ce_gitlab_backup.tar /var/opt/gitlab/backups/
```