1.在升級前必定要作好備份,記錄本身當前gitlab-ce的版本號。git
查看當前gitlab版本號gitlab
yum list | grep gitlab-ce
2.備份文件url
gitlab-rake gitlab:backup:create
在目錄/var/opt/gitlab/backups/下會生成一個備份文件如:1552552057_gitlab_backup.tar,其中1552552057即爲這次備份都版本號。
還原備份(失敗)
命令: gitlab-rake gitlab:backup:restore BACKUP=備份版本號
3.配置gitlab-yum 本地源
如清華的鏡像:
https://mirrors.tuna.tsinghua...rest
[root@localhost ~]# cat << EOF > /etc/yum.repos.d/gitlab-ce.repo > [gitlab-ce] > name=gitlab-ce > baseurl=https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/ > repo_gpgcheck=0 > gpgcheck=0 > enable=1 > gpgkey=https://packages.gitlab.com/gpg.key > EOF
4.yum install安裝code
升級Gitlab(注意:因爲升級不能跨越大版本號,所以只能升級到當前大版本號到最高版本,方可升級到下一個大版本號)
依次執行下面指令逐步升級,在每一步安裝成功後若是發現界面500,不可訪問,那麼執行gitlab-ctl reconfigure指令刷新配置文件。(必定保證數據能夠正常訪問方可執行下一步升級指令)get
升級過程當中有可能會升級PostgreSQL,命令:sudo gitlab-ctl pg-upgrade
yum install gitlab-ce-10.8.7-ce.0.el7 yum install gitlab-ce-11.0.0-ce.0.el7 yum install gitlab-ce-11.11.5-ce.0.el7 yum install gitlab-ce-12.0.0-ce.0.el7 ... yum update
查看當前版本號it
cat /opt/gitlab/embedded/service/gitlab-rails/VERSION