gitlab-org--gitlab-foss/doc/update/upgrader.md

71 lines
2.6 KiB
Markdown
Raw Normal View History

2014-04-24 22:48:22 +00:00
# GitLab Upgrader
2014-01-27 12:51:01 +00:00
GitLab Upgrader - a ruby script that allows you easily upgrade GitLab to latest minor version.
2014-04-24 22:48:22 +00:00
2014-01-27 12:51:01 +00:00
For example it can update your application from 6.4 to latest GitLab 6 version (like 6.6.1).
2014-04-24 22:48:22 +00:00
You still need to create a backup and manually restart GitLab after running the script but all other operations are done by this upgrade script.
2014-01-27 12:51:01 +00:00
If you have local changes to your GitLab repository the script will stash them and you need to use `git stash pop` after running the script.
2014-04-24 22:48:22 +00:00
**GitLab Upgrader is available only for GitLab version 6.4.2 or higher.**
2014-04-24 22:48:22 +00:00
## 0. Backup
cd /home/git/gitlab
sudo -u git -H bundle exec rake gitlab:backup:create RAILS_ENV=production
2014-04-24 22:48:22 +00:00
## 1. Stop server
sudo service gitlab stop
2014-04-24 22:48:22 +00:00
## 2. Run GitLab upgrade tool
Note: GitLab 7.2 adds `pkg-config` and `cmake` as dependency. Please check the dependencies in the [installation guide.](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/install/installation.md#1-packages-dependencies)
# Starting with GitLab version 7.0 upgrader script has been moved to bin directory
cd /home/git/gitlab
if [ -f bin/upgrade.rb ]; then sudo -u git -H ruby bin/upgrade.rb; else sudo -u git -H ruby script/upgrade.rb; fi
# to perform a non-interactive install (no user input required) you can add -y
# if [ -f bin/upgrade.rb ]; then sudo -u git -H ruby bin/upgrade.rb -y; else sudo -u git -H ruby script/upgrade.rb -y; fi
2014-04-24 22:48:22 +00:00
## 3. Start application
sudo service gitlab start
sudo service nginx restart
2014-02-14 04:50:02 +00:00
2014-04-24 22:48:22 +00:00
## 4. Check application status
2014-02-14 04:50:02 +00:00
Check if GitLab and its dependencies are configured correctly:
2014-02-14 04:50:02 +00:00
sudo -u git -H bundle exec rake gitlab:check RAILS_ENV=production
2014-02-14 04:50:02 +00:00
If all items are green, then congratulations upgrade is complete!
2014-04-04 08:19:40 +00:00
2014-04-24 22:48:22 +00:00
## 5. Upgrade GitLab Shell (if needed)
If the `gitlab:check` task reports an outdated version of `gitlab-shell` you should upgrade it.
Upgrade it by running the commands below after replacing 2.0.1 with the correct version number:
```
cd /home/git/gitlab-shell
sudo -u git -H git fetch
sudo -u git -H git checkout v2.0.1
```
2014-04-04 08:19:40 +00:00
2014-04-24 22:48:22 +00:00
## One line upgrade command
2014-04-04 08:19:40 +00:00
You've read through the entire guide and probably already did all the steps one by one.
2014-04-24 22:48:22 +00:00
Here is a one line command with step 1 to 4 for the next time you upgrade:
2014-04-04 08:19:40 +00:00
```bash
cd /home/git/gitlab; sudo -u git -H bundle exec rake gitlab:backup:create RAILS_ENV=production; \
2014-06-02 07:48:55 +00:00
sudo service gitlab stop; \
if [ -f bin/upgrade.rb ]; then sudo -u git -H ruby bin/upgrade.rb -y; else sudo -u git -H ruby script/upgrade.rb -y; fi; \
sudo service gitlab start; \
sudo service nginx restart; sudo -u git -H bundle exec rake gitlab:check RAILS_ENV=production
```