gitlabデータ移行
3566 ワード
Gitlab自体の互換性の問題で、高バージョンのGitlabは低バージョンのバックアップデータを復元できません.bサーバにはaサーバと同じバージョンのgitlabを配備してgitlabバージョンを表示するコマンドに注意する必要があります.
元の192.168.0.108サーバのデータをバックアップ
バックアップ後のファイルは一般的に/var/opt/gitlab/backupsの下にあり、1558334901のようなファイル名が自動的に生成されます.2019_05_20_10.3.4_gitlab_backup.tar
生成したtarファイルを192.168.0.246サーバ上の対応するbackupsディレクトリにコピーするscpにより直接コピーすることができる.
192.168.0.246サーバでデータをリカバリ
転載先:https://www.cnblogs.com/jiangwenhui/p/11326264.html
[root@xxxx ~]# gitlab-rake gitlab:env:info
System information
System: CentOS 7.2.1511
Current User: git
Using RVM: no
Ruby Version: 2.3.5p376
Gem Version: 2.6.13
Bundler Version:1.13.7
Rake Version: 12.3.0
Redis Version: 3.2.11
Git Version: 2.14.3
Sidekiq Version:5.0.4
Go Version: unknown
GitLab information
Version: 10.3.4
Revision: 56dc722
Directory: /opt/gitlab/embedded/service/gitlab-rails
DB Adapter: postgresql
URL: http://192.168.0.246:7023
HTTP Clone URL: http://192.168.0.246:7023/some-group/some-project.git
SSH Clone URL: git@192.168.0.246:some-group/some-project.git
Using LDAP: no
Using Omniauth: no
GitLab Shell
Version: 5.10.2
Repository storage paths:
- default: /home/git-data/repositories
Hooks: /opt/gitlab/embedded/service/gitlab-shell/hooks
Git: /opt/gitlab/embedded/bin/git
[root@xxxxx ~]#
元の192.168.0.108サーバのデータをバックアップ
gitlab-rake gitlab:backup:create RAILS_ENV=production
バックアップ後のファイルは一般的に/var/opt/gitlab/backupsの下にあり、1558334901のようなファイル名が自動的に生成されます.2019_05_20_10.3.4_gitlab_backup.tar
生成したtarファイルを192.168.0.246サーバ上の対応するbackupsディレクトリにコピーするscpにより直接コピーすることができる.
scp root@192.168.0.108:/var/opt/gitlab/backups/1558334901_2019_05_20_10.3.4_gitlab_backup.tar /var/opt/gitlab/backups
192.168.0.246サーバでデータをリカバリ
gitlab-rake gitlab:backup:restore RAILS_ENV=production BACKUP=1558334901_2019_05_20_10.3.4
転載先:https://www.cnblogs.com/jiangwenhui/p/11326264.html