I am setting up a new OpenLDAP server to replace the function of an existing OpenLDAP server.
On the original server, there are group entries with the following objectClasses
- groupOfMembers (structural)
- posixGroup (auxiliary)
- top (abstract)
On the new server, I create groups using Python’s ldap3
module, whereby I can specify the objectClasses but not the kind, e.g. structural or auxiliary. The groups that are are created have the following objectClasses:
- groupOfMembers (structural)
- posixGroup (structural)
- top (abstract)
Is this due to a shortcoming in the way I am creating the groups or have I configured the servers differently? I checked the schema files, but they seem to be identical.