Update INSTALL.md

This commit is contained in:
Marisa 2025-10-08 12:25:53 -04:00
parent 8ea7d9b4c3
commit 1ae47b3c32

View File

@ -39,3 +39,9 @@ cn: admin
description: LDAP administrator description: LDAP administrator
userPassword: {SSHA}yxIgYTzcuRRdlesjfWkIN6K97/8jOrZF # Replace with the hash of your password userPassword: {SSHA}yxIgYTzcuRRdlesjfWkIN6K97/8jOrZF # Replace with the hash of your password
``` ```
Execute create_admin.ldif using the root password (which is the container default for openLDAP root: _admin_)
```
root@example:/etc/ldap# ldapadd -x -H ldap:/// -D "cn=admin,dc=example,dc=com" -w admin -f create_admin.ldif
adding new entry "cn=admin,dc=example,dc=com"
```
That's all, our administrator user was properly done.