diff options
author | Ben Bodenmiller <bbodenmiller@hotmail.com> | 2014-08-04 12:56:08 -0700 |
---|---|---|
committer | Ben Bodenmiller <bbodenmiller@hotmail.com> | 2014-08-04 12:56:08 -0700 |
commit | 6a412c99690a6cd4c2467951e4cdb87dfdbf248f (patch) | |
tree | f37ce3ca554d668b17480b87bdf7465435d1d7ad /doc/update/5.0-to-5.1.md | |
parent | d4f5af820f2fdb442404804859c84d2ef21794d9 (diff) | |
download | gitlab-ce-6a412c99690a6cd4c2467951e4cdb87dfdbf248f.tar.gz |
add application check commands
Diffstat (limited to 'doc/update/5.0-to-5.1.md')
-rw-r--r-- | doc/update/5.0-to-5.1.md | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/doc/update/5.0-to-5.1.md b/doc/update/5.0-to-5.1.md index 628d8bc7dfa..b04f3065a17 100644 --- a/doc/update/5.0-to-5.1.md +++ b/doc/update/5.0-to-5.1.md @@ -69,3 +69,22 @@ mysql> \q ## 7. Start application sudo service gitlab start + +## 8. Check installation + + +```bash +# In 5-10 seconds lets check gitlab-shell +sudo -u git -H /home/git/gitlab-shell/bin/check + +# Example of success output +# Check GitLab API access: OK +# Check directories and files: +# /home/git/repositories: OK +# /home/git/.ssh/authorized_keys: OK + + +# Now check gitlab instance +sudo -u git -H bundle exec rake gitlab:check RAILS_ENV=production + +``` |