diff options
author | Paul Armstrong <paul@paularmstrongdesigns.com> | 2012-03-24 16:07:21 -0700 |
---|---|---|
committer | Paul Armstrong <paul@paularmstrongdesigns.com> | 2012-03-24 16:07:21 -0700 |
commit | fd1e7e2b212168b320dbb41abfcf77a5db24a729 (patch) | |
tree | b20befab65cc46d36d873c749c3c9f7561828594 /doc | |
parent | 1fd080687dc4e84429e5fd90bb15cc2bd12b1a9d (diff) | |
download | gitlab-ce-fd1e7e2b212168b320dbb41abfcf77a5db24a729.tar.gz |
Fix instructions for running gitlab_status
When running `rake gitlab_status` to check if it's safe to continue on installation in step 4, you need to use `RAILS_ENV=production` or else you will receive an error about "permission denied for user root@localhost..."
Diffstat (limited to 'doc')
-rw-r--r-- | doc/installation.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/installation.md b/doc/installation.md index 1003fa79b5a..79ed2ccd0d7 100644 --- a/doc/installation.md +++ b/doc/installation.md @@ -158,7 +158,7 @@ Permissions: Checking status: - sudo -u gitlab bundle exec rake gitlab_status + sudo -u gitlab bundle exec rake gitlab_status RAILS_ENV=production # OUTPUT EXAMPLE |