Cookbook to deploy a LDAP server (389 Directory Server) #115

Merged
greg merged 14 commits from feature/107-ldap_server into master 2019-12-23 17:50:23 +00:00
Showing only changes of commit 0a96c31e12 - Show all commits

16
doc/ldap.md Normal file
View File

@@ -0,0 +1,16 @@
# LDAP (389 Directory Server).
## Credentials
The admin account is `cn=Directory Manager` with the password stored in the
encrypted data bag `admin_password` item
```
$ knife data bag show credentials dirsrv --secret-file .chef/encrypted_data_bag_secret
```
## Example search:
```
$ ldapsearch -x -w $password -D 'cn=Directory Manager' -b "ou=users,dc=kosmos,dc=org" -H "ldaps://ldap.kosmos.org" -v
```