How to install previos version of Gitlab EE 11.10.4 ? (Omnibus)

How to install previos version of Gitlab EE 11.10.4 ? (Omnibus)

It seems that version is still in the repositories, so it should just be

sudo apt-get install gitlab-ee=11.10.4-ee.0
SKIP_POST_DEPLOYMENT_MIGRATIONS=true sudo gitlab-ctl reconfigure
sudo gitlab-rake db:migrate
sudo gitlab-ctl hup unicorn
sudo gitlab-ctl hup sidekiq
2 Likes

Hi @neatek! Welcome to the GitLab forum!

The commands listed above should work, but I think it can be further simplified to one single command:

sudo apt install gitlab-ee=11.10.4-ee.0

Let me know if this works for you!

All the best,
Greg

2 Likes

Whether apt can be used instead of apt-get depends on the distribution, but nowadays it’s probably a fairly safe bet that apt is available.

Whether the other commands I listed are necessary, depends on whether /etc/gitlab/skip-auto-reconfigure exists, but while they’re only needed if it does, they (afaict) don’t hurt if it doesn’t . (Make what you want of the fact that I’m correcting a staff member).

Thanks for all answers.