LDAP(apacheDS)ユーザーを作成し、管理者アカウントを使用してそのユーザーのパスワードを変更するのに問題があります。
管理者ユーザーを使用してLDAPユーザーを追加できます。
# ldapadd -D cn=admin,dc=mytest,dc=local -W -h ldap01.mytest.local -f /tmp/atest.ldif
adding new entry "uid=atest,cn=MyClients,ou=Users,dc=mytest,dc=local"
ただし、同じ管理者を使用してユーザーのパスワードを変更することはできません。
# ldappasswd -x -h ldap01.mytest.local -D cn=admin,dc=mytest,dc=local -W -s Someword uid=atest,cn=MyClients,ou=Users,dc=mytest,dc=local
ber_scanf: Success
Result: Insufficient access (50)
Additional info: Non-admin user cannot access another user's password to modify it
なぜ私が間違っているのか、何を間違っているのかについての提案を歓迎します。