OU の下のすべてのユーザーを削除する Python スクリプトを作成しています。ou=人,cn=管理者Ldap,cn=Windchill_11.0,o=ptc.
次のコードを実行してエントリを削除しようとしていますが、「下位エントリがあるため削除できません」、「参照」: なし、「タイプ」: 「delResponse」というエラーで失敗します。
エントリを単独で削除できる方法はありますか?
どうもありがとう!
from ldap3 import Server, Connection, ALL
s = Server('<IP-ADDRESS>', get_info=ALL)
print(s)
c = Connection(s, user='xxxxxx', password='xxxxxxxxxx')
c.bind()
c.delete('ou=people,cn=AdministrativeLdap,cn=Windchill_11.0,o=ptc',force=True)
print(c.result)
c.unbind()