debian-mirror-gitlab/doc/update/2.6-to-3.0.md

71 lines
1.9 KiB
Markdown
Raw Normal View History

2018-03-17 18:26:18 +05:30
---
comments: false
---
2014-09-02 18:07:02 +05:30
# From 2.6 to 3.0
2017-08-17 22:00:37 +05:30
*Make sure you view this [upgrade guide from the `master` branch](https://gitlab.com/gitlab-org/gitlab-ce/tree/master/doc/update/2.6-to-3.0.md) for the most up to date instructions.*
2014-09-02 18:07:02 +05:30
## 1. Stop server & resque
sudo service gitlab stop
## 2. Update code & db
```bash
# Get latest code
git fetch origin
git checkout v3.0.3
2016-08-24 12:49:21 +05:30
# The Modernizr gem was yanked from RubyGems. It is required for GitLab >= 2.8.0
# Edit `Gemfile` and change `gem "modernizr", "2.5.3"` to
# `gem "modernizr-rails", "2.7.1"``
sudo -u gitlab -H vim Gemfile
2014-09-02 18:07:02 +05:30
# Install libs
sudo -u gitlab bundle install --without development test postgres
# update db
sudo -u gitlab bundle exec rake db:migrate RAILS_ENV=production
# !!! Config should be replaced with a new one. Check it after replace
cp config/gitlab.yml.example config/gitlab.yml
2015-04-26 12:48:37 +05:30
# update Gitolite hooks
2014-09-02 18:07:02 +05:30
2015-04-26 12:48:37 +05:30
# Gitolite v2:
2014-09-02 18:07:02 +05:30
sudo cp ./lib/hooks/post-receive /home/git/share/gitolite/hooks/common/post-receive
sudo chown git:git /home/git/share/gitolite/hooks/common/post-receive
2015-04-26 12:48:37 +05:30
# Gitolite v3:
2014-09-02 18:07:02 +05:30
sudo cp ./lib/hooks/post-receive /home/git/.gitolite/hooks/common/post-receive
sudo chown git:git /home/git/.gitolite/hooks/common/post-receive
# set valid path to hooks in gitlab.yml in git_host section
# like this
git_host:
2015-04-26 12:48:37 +05:30
# Gitolite 2
2014-09-02 18:07:02 +05:30
hooks_path: /home/git/share/gitolite/hooks
2015-04-26 12:48:37 +05:30
# Gitolite 3
2014-09-02 18:07:02 +05:30
hooks_path: /home/git/.gitolite/hooks/
2015-04-26 12:48:37 +05:30
# Make some changes to Gitolite config
2014-09-02 18:07:02 +05:30
# For more information visit https://github.com/gitlabhq/gitlabhq/pull/1719
2015-04-26 12:48:37 +05:30
# Gitolite v2
2014-09-02 18:07:02 +05:30
sudo -u git -H sed -i 's/\(GL_GITCONFIG_KEYS\s*=>*\s*\).\{2\}/\\1"\.\*"/g' /home/git/.gitolite.rc
# gitlite v3
sudo -u git -H sed -i "s/\(GIT_CONFIG_KEYS\s*=>*\s*\).\{2\}/\\1'\.\*'/g" /home/git/.gitolite.rc
# Check app status
sudo -u gitlab bundle exec rake gitlab:app:status RAILS_ENV=production
```
## 3. Start all
sudo service gitlab start