Commit e26d149cd8a4eedaf56810de01e085c5661f1c02
Exists in
master
and in
4 other branches
Merge branch 'double-check-after-start' of /home/git/repositories/gitlab/gitlabhq
Showing
1 changed file
with
9 additions
and
7 deletions
Show diff stats
doc/install/installation.md
... | ... | @@ -12,7 +12,7 @@ This installation guide was created for and tested on **Debian/Ubuntu** operatin |
12 | 12 | |
13 | 13 | This is the official installation guide to set up a production server. To set up a **development installation** or for many other installation options please consult [the installation section in the readme](https://github.com/gitlabhq/gitlabhq#installation). |
14 | 14 | |
15 | -The following steps have been known to work. Please **use caution when you deviate** from this guide. Make sure you don't violate any assumptions GitLab makes about its environment. | |
15 | +The following steps have been known to work. Please **use caution when you deviate** from this guide. Make sure you don't violate any assumptions GitLab makes about its environment. For example many people run into permission problems because they changed the location of directories or run services as the wrong user. | |
16 | 16 | |
17 | 17 | If you find a bug/error in this guide please **submit a pull request** following the [contributing guide](../../CONTRIBUTING.md). |
18 | 18 | |
... | ... | @@ -242,6 +242,14 @@ Check if GitLab and its environment are configured correctly: |
242 | 242 | |
243 | 243 | sudo -u git -H bundle exec rake gitlab:env:info RAILS_ENV=production |
244 | 244 | |
245 | +## Start Your GitLab Instance | |
246 | + | |
247 | + sudo service gitlab start | |
248 | + # or | |
249 | + sudo /etc/init.d/gitlab restart | |
250 | + | |
251 | +## Double-check Application Status | |
252 | + | |
245 | 253 | To make sure you didn't miss anything run a more thorough check with: |
246 | 254 | |
247 | 255 | sudo -u git -H bundle exec rake gitlab:check RAILS_ENV=production |
... | ... | @@ -249,12 +257,6 @@ To make sure you didn't miss anything run a more thorough check with: |
249 | 257 | If all items are green, then congratulations on successfully installing GitLab! |
250 | 258 | However there are still a few steps left. |
251 | 259 | |
252 | -## Start Your GitLab Instance | |
253 | - | |
254 | - sudo service gitlab start | |
255 | - # or | |
256 | - sudo /etc/init.d/gitlab restart | |
257 | - | |
258 | 260 | |
259 | 261 | # 7. Nginx |
260 | 262 | ... | ... |