diff options
author | Kamil Trzcinski <ayufan@ayufan.eu> | 2015-10-02 12:44:20 +0200 |
---|---|---|
committer | Kamil Trzcinski <ayufan@ayufan.eu> | 2015-10-02 12:44:20 +0200 |
commit | a4292066f0b8dc7f0ff69b3f7a6a11424a42ad01 (patch) | |
tree | a40b16c9008438cec9603754edd260443abb03ae /doc | |
parent | 2fa89a3dc6a7580969203e43808048b79f172c0c (diff) | |
download | gitlab-ce-a4292066f0b8dc7f0ff69b3f7a6a11424a42ad01.tar.gz |
Back and forth permission on builds/migration-doc-fix
Diffstat (limited to 'doc')
-rw-r--r-- | doc/migrate_ci_to_ce/README.md | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/doc/migrate_ci_to_ce/README.md b/doc/migrate_ci_to_ce/README.md index 46ce0fe98c0..1cb1bc2e762 100644 --- a/doc/migrate_ci_to_ce/README.md +++ b/doc/migrate_ci_to_ce/README.md @@ -182,6 +182,7 @@ will need this file later. ``` # On your CI server: # Omnibus +sudo chown gitlab-ci:gitlab-ci /var/opt/gitlab/gitlab-ci/builds sudo gitlab-ci-rake backup:create # Source @@ -228,6 +229,7 @@ be no CI data yet because you turned CI on the GitLab server off earlier. ``` # On your GitLab server: # Omnibus +sudo chown git:git /var/opt/gitlab/gitlab-ci/builds sudo gitlab-rake ci:migrate # Source @@ -342,7 +344,12 @@ The fix for this is to update to Omnibus 7.14 first and then update it to 8.0. #### Permission denied when accessing /var/opt/gitlab/gitlab-ci/builds To fix that issue you have to change builds/ folder permission before doing final backup: ``` -chown -R gitlab-ci:gitlab-ci /var/opt/gitlab/gitlab-ci/builds +sudo chown -R gitlab-ci:gitlab-ci /var/opt/gitlab/gitlab-ci/builds +``` + +Then before executing `ci:migrate` you need to fix builds folder permission: +``` +sudo chown git:git /var/opt/gitlab/gitlab-ci/builds ``` #### Problems when importing CI database to GitLab |