diff options
author | Drew Blessing <drew@gitlab.com> | 2015-12-22 15:09:35 -0600 |
---|---|---|
committer | Drew Blessing <drew@gitlab.com> | 2016-12-16 09:57:05 -0600 |
commit | e0eb86ee809aaad86be4ca1d985a5e67c0657a6f (patch) | |
tree | e24cc5d86b0fcfc591bff3cdb764b2eaf49aa0ae /doc/administration/raketasks/check.md | |
parent | bdb5e6771856c280fa1cf92b19a47fb83a4988ec (diff) | |
download | gitlab-ce-e0eb86ee809aaad86be4ca1d985a5e67c0657a6f.tar.gz |
Add LDAP task to rename a provider
Sometimes admins will change the LDAP configuration, not realizing
that problems will occur if the user's LDAP identities are not
also updated to use the new provider name. This task will give
admins a single command to run to update identities and will
prevent having to run multiple Rails console queries.
Diffstat (limited to 'doc/administration/raketasks/check.md')
-rw-r--r-- | doc/administration/raketasks/check.md | 23 |
1 files changed, 2 insertions, 21 deletions
diff --git a/doc/administration/raketasks/check.md b/doc/administration/raketasks/check.md index d1d2fed4861..c8b5434c068 100644 --- a/doc/administration/raketasks/check.md +++ b/doc/administration/raketasks/check.md @@ -74,24 +74,5 @@ Example output: The LDAP check Rake task will test the bind_dn and password credentials (if configured) and will list a sample of LDAP users. This task is also -executed as part of the `gitlab:check` task, but can run independently -using the command below. - -**Omnibus Installation** - -``` -sudo gitlab-rake gitlab:ldap:check -``` - -**Source Installation** - -```bash -sudo -u git -H bundle exec rake gitlab:ldap:check RAILS_ENV=production -``` - -By default, the task will return a sample of 100 LDAP users. Change this -limit by passing a number to the check task: - -```bash -rake gitlab:ldap:check[50] -``` +executed as part of the `gitlab:check` task, but can run independently. +See [LDAP Rake Tasks - LDAP Check](ldap.md#check) for details. |