From 81dd40d86b4c1faefd7125c715a545407b343c50 Mon Sep 17 00:00:00 2001 From: Leslie Zhao Date: Tue, 22 Jan 2013 16:08:53 +0800 Subject: [PATCH] fix install guide --- doc/install/installation.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/doc/install/installation.md b/doc/install/installation.md index 0724bea9c3b..a26c9c3143d 100644 --- a/doc/install/installation.md +++ b/doc/install/installation.md @@ -260,7 +260,7 @@ used for the `email.from` setting in `config/gitlab.yml`) ## Initialise Database and Activate Advanced Features - sudo -u gitlab -H bundle exec rake gitlab:setup RAILS_ENV=production + sudo -u gitlab -H bundle exec rake gitlab:app:setup RAILS_ENV=production ## Install Init Script @@ -273,6 +273,13 @@ Download the init script (will be /etc/init.d/gitlab): Make GitLab start on boot: sudo update-rc.d gitlab defaults 21 + + +## Start Your GitLab Instance + + sudo service gitlab start + # or + sudo /etc/init.d/gitlab restart ## Check Application Status @@ -288,12 +295,6 @@ To make sure you didn't miss anything run a more thorough check with: If all items are green, then congratulations on successfully installing GitLab! However there are still a few steps left. -## Start Your GitLab Instance - - sudo service gitlab start - # or - sudo /etc/init.d/gitlab restart - # 7. Nginx -- GitLab