diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-02-11 11:07:44 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-02-11 11:07:44 +0200 |
commit | 5966f5bb97040cdb00018ef916eff26917cc294a (patch) | |
tree | f53880c1e25ac0c720829c7c1ad20fd649b2b93a | |
parent | 51ed906d9d1f4a110d7a08eb8d29920bc0208393 (diff) | |
parent | 345694384e67dddf276ee2d9837489619f2d02e5 (diff) | |
download | gitlab-ce-5966f5bb97040cdb00018ef916eff26917cc294a.tar.gz |
Merge branch 'master' of github.com:gitlabhq/gitlabhq
-rw-r--r-- | doc/update/6.3-to-6.4.md | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/doc/update/6.3-to-6.4.md b/doc/update/6.3-to-6.4.md index 6874056498b..cfe75a6f149 100644 --- a/doc/update/6.3-to-6.4.md +++ b/doc/update/6.3-to-6.4.md @@ -9,7 +9,9 @@ sudo -u git -H bundle exec rake gitlab:backup:create RAILS_ENV=production ### 1. Stop server - sudo service gitlab stop +```bash +sudo service gitlab stop +```` ### 2. Get latest code @@ -52,18 +54,24 @@ sudo cp lib/support/init.d/gitlab /etc/init.d/gitlab ### 5. Start application - sudo service gitlab start - sudo service nginx restart +```bash +sudo service gitlab start +sudo service nginx restart +``` -### 8. Check application status +### 6. Check application status Check if GitLab and its environment are configured correctly: - sudo -u git -H bundle exec rake gitlab:env:info RAILS_ENV=production +```bash +sudo -u git -H bundle exec rake gitlab:env:info RAILS_ENV=production +``` To make sure you didn't miss anything run a more thorough check with: - sudo -u git -H bundle exec rake gitlab:check RAILS_ENV=production +```bash +sudo -u git -H bundle exec rake gitlab:check RAILS_ENV=production +``` If all items are green, then congratulations upgrade complete! |