From 4105878ae7b6d84d81df8c2092d2292a105eff80 Mon Sep 17 00:00:00 2001 From: Terry Wang Date: Fri, 3 Jan 2014 16:46:39 +1100 Subject: Fix numbering in 6.3-to-6.4.md --- doc/update/6.3-to-6.4.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc/update/6.3-to-6.4.md') diff --git a/doc/update/6.3-to-6.4.md b/doc/update/6.3-to-6.4.md index 69d184722cb..7938330dc33 100644 --- a/doc/update/6.3-to-6.4.md +++ b/doc/update/6.3-to-6.4.md @@ -54,7 +54,7 @@ sudo cp lib/support/init.d/gitlab /etc/init.d/gitlab 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: -- cgit v1.2.1 From 0fefbad6c9926f459aefa69ed0ff422cab3c4f93 Mon Sep 17 00:00:00 2001 From: Terry Wang Date: Fri, 3 Jan 2014 16:54:05 +1100 Subject: Unify markdown syntax for Bash commands --- doc/update/6.3-to-6.4.md | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) (limited to 'doc/update/6.3-to-6.4.md') diff --git a/doc/update/6.3-to-6.4.md b/doc/update/6.3-to-6.4.md index 7938330dc33..12f1a759cef 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 @@ -51,18 +53,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 +``` ### 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! -- cgit v1.2.1