Merge pull request #5975 from terrywang/fix-update-doc
Fix numbering in 6.3-to-6.4.md
This commit is contained in:
commit
345694384e
1 changed files with 14 additions and 6 deletions
|
@ -9,7 +9,9 @@ sudo -u git -H bundle exec rake gitlab:backup:create RAILS_ENV=production
|
||||||
|
|
||||||
### 1. Stop server
|
### 1. Stop server
|
||||||
|
|
||||||
sudo service gitlab stop
|
```bash
|
||||||
|
sudo service gitlab stop
|
||||||
|
````
|
||||||
|
|
||||||
### 2. Get latest code
|
### 2. Get latest code
|
||||||
|
|
||||||
|
@ -52,18 +54,24 @@ sudo cp lib/support/init.d/gitlab /etc/init.d/gitlab
|
||||||
|
|
||||||
### 5. Start application
|
### 5. Start application
|
||||||
|
|
||||||
sudo service gitlab start
|
```bash
|
||||||
sudo service nginx restart
|
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:
|
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:
|
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!
|
If all items are green, then congratulations upgrade complete!
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue