LDAP Rake tasks
- Tier: Free, Premium, Ultimate
- Offering: GitLab Self-Managed
The following are LDAP-related Rake tasks.
Check
The LDAP check Rake task tests the bind_dn
and password
credentials
(if configured) and lists 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.
Linux package (Omnibus)
sudo gitlab-rake gitlab:ldap:check
Self-compiled (source)
sudo RAILS_ENV=production -u git -H bundle exec rake gitlab:ldap:check
By default, the task returns a sample of 100 LDAP users. Change this limit by passing a number to the check task:
rake gitlab:ldap:check[50]
Run a group sync
- Tier: Premium, Ultimate
- Offering: GitLab Self-Managed
The following task runs a group sync immediately. This is valuable when you'd like to update all configured group memberships against LDAP without waiting for the next scheduled group sync to be run.
If you'd like to change the frequency at which a group sync is performed, adjust the cron schedule instead.
Linux package (Omnibus)
sudo gitlab-rake gitlab:ldap:group_sync
Self-compiled (source)
sudo RAILS_ENV=production -u git -H bundle exec rake gitlab:ldap:group_sync
Rename a provider
If you change the LDAP server ID in gitlab.yml
or gitlab.rb
you need
to update all user identities or users aren't able to sign in. Input the
old and new provider and this task updates all matching identities in the
database.
old_provider
and new_provider
are derived from the prefix ldap
plus the
LDAP server ID from the configuration file. For example, in gitlab.yml
or
gitlab.rb
you may see LDAP configuration like this:
main:
label: 'LDAP'
host: '_your_ldap_server'
port: 389
uid: 'sAMAccountName'
# ...
main
is the LDAP server ID. Together, the unique provider is ldapmain
.
If you input an incorrect new provider, users cannot sign in. If this happens,
run the task again with the incorrect provider as the old_provider
and the
correct provider as the new_provider
.
Linux package (Omnibus)
sudo gitlab-rake gitlab:ldap:rename_provider[old_provider,new_provider]
Self-compiled (source)
sudo RAILS_ENV=production -u git -H bundle exec rake gitlab:ldap:rename_provider[old_provider,new_provider]
Example
Consider beginning with the default server ID main
(full provider ldapmain
).
If we change main
to mycompany
, the new_provider
is ldapmycompany
.
To rename all user identities run the following command:
sudo gitlab-rake gitlab:ldap:rename_provider[ldapmain,ldapmycompany]
Example output:
100 users with provider 'ldapmain' will be updated to 'ldapmycompany'.
If the new provider is incorrect, users will be unable to sign in.
Do you want to continue (yes/no)? yes
User identities were successfully updated
Other options
If you do not specify an old_provider
and new_provider
the task prompts you
for them:
Linux package (Omnibus)
sudo RAILS_ENV=production -u git -H bundle exec rake gitlab:ldap:check
```0
#### Self-compiled (source)
```shell
sudo RAILS_ENV=production -u git -H bundle exec rake gitlab:ldap:check
```1
**Example output:**
```shell
sudo RAILS_ENV=production -u git -H bundle exec rake gitlab:ldap:check
```2
This task also accepts the `force` environment variable, which skips the
confirmation dialog:
```shell
sudo RAILS_ENV=production -u git -H bundle exec rake gitlab:ldap:check
```3
## Secrets
GitLab can use [LDAP configuration secrets](../auth/ldap/_index.md#use-encrypted-credentials) to read from an encrypted file.
The following Rake tasks are provided for updating the contents of the encrypted file.
### Show secret
Show the contents of the current LDAP secrets.
#### Linux package (Omnibus)
```shell
sudo RAILS_ENV=production -u git -H bundle exec rake gitlab:ldap:check
```4
#### Self-compiled (source)
```shell
sudo RAILS_ENV=production -u git -H bundle exec rake gitlab:ldap:check
```5
**Example output:**
```shell
sudo RAILS_ENV=production -u git -H bundle exec rake gitlab:ldap:check
```6
### Edit secret
Opens the secret contents in your editor, and writes the resulting content to the encrypted secret file when you exit.
#### Linux package (Omnibus)
```shell
sudo RAILS_ENV=production -u git -H bundle exec rake gitlab:ldap:check
```7
#### Self-compiled (source)
```shell
sudo RAILS_ENV=production -u git -H bundle exec rake gitlab:ldap:check
```8
### Write raw secret
Write new secret content by providing it on STDIN.
#### Linux package (Omnibus)
```shell
sudo RAILS_ENV=production -u git -H bundle exec rake gitlab:ldap:check
```9
#### Self-compiled (source)
```shell
rake gitlab:ldap:check[50]
```0
### Secrets examples
**Editor example**
The write task can be used in cases where the edit command does not work with your editor:
```shell
rake gitlab:ldap:check[50]
```1
**KMS integration example**
It can also be used as a receiving application for content encrypted with a KMS:
```shell
rake gitlab:ldap:check[50]
```2
**Google Cloud secret integration example**
It can also be used as a receiving application for secrets out of Google Cloud:
```shell
rake gitlab:ldap:check[50]
```3