Commit b936314e6ba5da8ccf9779907dacf04747b49cd3

Authored by Dmitriy Zaporozhets
2 parents 9c48f995 fa6f1983

Merge branch '6_0_to_6_2' of /home/git/repositories/gitlab/gitlabhq

Showing 1 changed file with 128 additions and 0 deletions   Show diff stats
doc/update/6.0-to-6.2.md 0 → 100644
... ... @@ -0,0 +1,128 @@
  1 +# From 6.0 to 6.2
  2 +
  3 +# In 6.1 we remove a lot of deprecated code.
  4 +# You should update to 6.0 before installing 6.1 or higher so all the necessary conversions are run.
  5 +
  6 +### Deprecations
  7 +
  8 +#### Global issue numbers
  9 +
  10 +As of 6.1 issue numbers are project specific. This means all issues are renumbered and get a new number in their url. If you use an old issue number url and the issue number does not exist yet you are redirected to the new one. This conversion does not trigger if the old number already exists for this project, this is unlikely but will happen with old issues and large projects.
  11 +
  12 +### 0. Backup
  13 +
  14 +It's useful to make a backup just in case things go south:
  15 +(With MySQL, this may require granting "LOCK TABLES" privileges to the GitLab user on the database version)
  16 +
  17 +```bash
  18 +cd /home/git/gitlab
  19 +sudo -u git -H bundle exec rake gitlab:backup:create RAILS_ENV=production
  20 +```
  21 +
  22 +### 1. Stop server
  23 +
  24 + sudo service gitlab stop
  25 +
  26 +### 2. Get latest code
  27 +
  28 +```bash
  29 +cd /home/git/gitlab
  30 +sudo -u git -H git fetch
  31 +sudo -u git -H git checkout 6-2-stable
  32 +```
  33 +
  34 +
  35 +### 3. Install additional packages
  36 +
  37 +```bash
  38 +# Add support for lograte for better log file handling
  39 +sudo apt-get install logrotate
  40 +```
  41 +
  42 +### 4. Update gitlab-shell
  43 +
  44 +```bash
  45 +cd /home/git/gitlab-shell
  46 +sudo -u git -H git fetch
  47 +sudo -u git -H git checkout v1.7.3
  48 +```
  49 +
  50 +### 5. Install libs, migrations, etc.
  51 +
  52 +```bash
  53 +cd /home/git/gitlab
  54 +
  55 +# MySQL
  56 +sudo -u git -H bundle install --without development test postgres --deployment
  57 +
  58 +#PostgreSQL
  59 +sudo -u git -H bundle install --without development test mysql --deployment
  60 +
  61 +
  62 +sudo -u git -H bundle exec rake db:migrate RAILS_ENV=production
  63 +sudo -u git -H bundle exec rake migrate_iids RAILS_ENV=production
  64 +sudo -u git -H bundle exec rake assets:clean RAILS_ENV=production
  65 +sudo -u git -H bundle exec rake assets:precompile RAILS_ENV=production
  66 +sudo -u git -H bundle exec rake cache:clear RAILS_ENV=production
  67 +```
  68 +
  69 +### 6. Update config files
  70 +
  71 +TIP: to see what changed in gitlab.yml.example in this release use next command:
  72 +
  73 +```
  74 +git diff 6-1-stable:config/gitlab.yml.example 6-2-stable:config/gitlab.yml.example
  75 +```
  76 +
  77 +* Make `/home/git/gitlab/config/gitlab.yml` same as https://github.com/gitlabhq/gitlabhq/blob/6-2-stable/config/gitlab.yml.example but with your settings.
  78 +* Make `/home/git/gitlab/config/unicorn.rb` same as https://github.com/gitlabhq/gitlabhq/blob/6-2-stable/config/unicorn.rb.example but with your settings.
  79 +* Copy rack attack middleware config
  80 +
  81 +```bash
  82 +sudo -u git -H cp config/initializers/rack_attack.rb.example config/initializers/rack_attack.rb
  83 +```
  84 +* Uncomment `config.middleware.use Rack::Attack` in `/home/git/gitlab/config/application.rb`
  85 +* Set up logrotate
  86 +
  87 +```bash
  88 +sudo cp lib/support/logrotate/gitlab /etc/logrotate.d/gitlab
  89 +```
  90 +
  91 +### 7. Update Init script
  92 +
  93 +```bash
  94 +sudo rm /etc/init.d/gitlab
  95 +sudo curl --output /etc/init.d/gitlab https://raw.github.com/gitlabhq/gitlabhq/6-2-stable/lib/support/init.d/gitlab
  96 +sudo chmod +x /etc/init.d/gitlab
  97 +```
  98 +
  99 +### 8. Start application
  100 +
  101 + sudo service gitlab start
  102 + sudo service nginx restart
  103 +
  104 +### 9. Check application status
  105 +
  106 +Check if GitLab and its environment are configured correctly:
  107 +
  108 + cd /home/git/gitlab
  109 + sudo -u git -H bundle exec rake gitlab:env:info RAILS_ENV=production
  110 +
  111 +To make sure you didn't miss anything run a more thorough check with:
  112 +
  113 + sudo -u git -H bundle exec rake gitlab:check RAILS_ENV=production
  114 +
  115 +If all items are green, then congratulations upgrade complete!
  116 +
  117 +## Things went south? Revert to previous version (6.0)
  118 +
  119 +### 1. Revert the code to the previous version
  120 +Follow the [`upgrade guide from 5.4 to 6.0`](5.4-to-6.0.md), except for the database migration
  121 +(The backup is already migrated to the previous version)
  122 +
  123 +### 2. Restore from the backup:
  124 +
  125 +```bash
  126 +cd /home/git/gitlab
  127 +sudo -u git -H bundle exec rake gitlab:backup:restore RAILS_ENV=production
  128 +```
... ...