• gitlab数据迁移


    由于Gitlab自身的兼容性问题,高版本的Gitlab无法恢复低版本备份的数据,需要注意在b服务器部署和a服务器一样版本的gitlab
    查看gitlab版本的命令:

    [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
  • 相关阅读:
    win7和win10自带桌面便签哪里找
    ETC到底要不要办?有什么好处?
    H5 video poster属性—设置视频封面
    造成苹果手机卡顿的三个原因
    华为mate10 pro内置浏览器出现的令人头疼的样式兼容问题
    flex——justify-content属性引起的一个样式问题
    MacDown语法
    空字符的类型转换
    Vue设置全局的方法和样式
    Vue之拦截与响应拦截
  • 原文地址:https://www.cnblogs.com/jiangwenhui/p/11326264.html
Copyright © 2020-2023  润新知