Commit 87a449f264684551d0b9cdfa9ed2d32f21110adb
Exists in
spb-stable
and in
3 other branches
Merge pull request #6321 from robertd/update_upgrader_guide
Update upgrader.md ... safety first
Showing
1 changed file
with
12 additions
and
0 deletions
Show diff stats
doc/update/upgrader.md
@@ -28,3 +28,15 @@ __GitLab Upgrader is available only for GitLab version 6.4.2 or higher__ | @@ -28,3 +28,15 @@ __GitLab Upgrader is available only for GitLab version 6.4.2 or higher__ | ||
28 | 28 | ||
29 | sudo service gitlab start | 29 | sudo service gitlab start |
30 | sudo service nginx restart | 30 | sudo service nginx restart |
31 | + | ||
32 | +### 4. Check application status | ||
33 | + | ||
34 | +Check if GitLab and its environment are configured correctly: | ||
35 | + | ||
36 | + sudo -u git -H bundle exec rake gitlab:env:info RAILS_ENV=production | ||
37 | + | ||
38 | +To make sure you didn't miss anything run a more thorough check with: | ||
39 | + | ||
40 | + sudo -u git -H bundle exec rake gitlab:check RAILS_ENV=production | ||
41 | + | ||
42 | +If all items are green, then congratulations upgrade is complete! |