[Date Prev][Date Next]
[Chronological]
[Thread]
[Top]
Re: newbie question: which objectClass?
Stefano Zanmarchi writes:
> I'd like to set up a minimal ldap server just for authentication
> (bind) purposes.
> No attributes need to be stored apart from uid and userPassword.
dn: uid=john.smith@myorg.com,ou=people,dc=myorg,dc=com
# from cosine.schema, requires uid (and allows a few other attrs)
objectClass: account
# from core.schema, requires userPassword
objectClass: simpleSecurityObject
uid: john.smith@myorg.com
userPassword: secret
--
Hallvard