Reputation: 559
We have an old GitLab Server that we cant update, so i setup a new one with GitLab 6.9 on it.
I have make an Backup on the old one with
sudo -u git -H bundle exec rake gitlab:backup:create RAILS_ENV=production
How to migrate the old one to the new GitLab Server with 6.9 installed on it?
Upvotes: 0
Views: 97
Reputation: 495
I think you would be better off installing GitLab 6.3 on the new server (with gitlab-shell 1.7.9), perhaps following the 6.2 to 6.3 upgrade guide. Then you can migrate the same version, 6.3 on the old server to 6.3 on the new server, and later upgrade the new server to 7.9.x. If you try to migrate from a backup of 6.3 to a new install of 6.9, you're going to run into problems, because there are database migrations at multiple point releases. Finally, when you're up to date on the latest version, you could migrate to the Omnibus installer.
Related, may I ask why you can't take a backup/snapshot and upgrade the existing server in-place?
Upvotes: 1