July 2018
Intermediate to advanced
268 pages
7h 36m
English
We are going to use the LDAP Data Interchange Format (LDIF) to set up our users on our LDAP server. The LDIF is a standard text-based representation for LDAP data, and changes to that data (https://ldap.com/ldif-the-ldap-data-interchange-format/).
In our application.yml file, we have shown Spring where to look for our LDIF file. The LDIF file is as follows:
dn: dc=packtpub,dc=comobjectclass: topobjectclass: domainobjectclass: extensibleObjectdc: packtpubdn: ou=groups,dc=packtpub,dc=comobjectclass: topobjectclass: organizationalUnitou: groupsdn: ou=people,dc=packtpub,dc=comobjectclass: topobjectclass: organizationalUnitou: peopledn: uid=john,ou=people,dc=packtpub,dc=comobjectclass: topobjectclass: person ...
Read now
Unlock full access