1、查看gitlab版本,在首页后面添加 /help就可以看到了
也可以用命令查看
cat /opt/gitlab/embedded/service/gitlab-rails/VERSION
2、gitLab版本升级,需要按照官方的指示版本进行依次升级
8.11.Z -> 8.12.0 -> 8.17.7 -> 9.5.10 -> 10.8.7 -> 11.11.8 -> 12.0.12 -> 12.1.17 -> 12.10.14 -> 13.0.14 -> 13.1.11 -> 13.8.8 -> 13.12.15 -> 14.0.12 -> -> latest 14.Y.Z
迁移前先备份数据
gitlab-ctl stop unicorn // 13版本之前
gitlab-ctl stop unicorn // 12版本之后
gitlab-ctl stop sidekiq
gitlab-ctl stop nginx
gitlab-rake gitlab:backup:create
ls /var/opt/gitlab/backups/
重新加载配置
sudo gitlab-ctl reconfigure
升级到14.8.2
gitlab-ctl stop sidekiq
gitlab-ctl stop puma
dpkg -i gitlab-ce_14.8.2-ce.0_amd64.deb
sudo gitlab-ctl reconfigure
sudo gitlab-ctl restart