我在用
$> ldapsearch -x -H ldap://<Directory Server IPv4 Address> -D cn=admin,o=myorg -s one
-b t=TEST -v
查看我的树中第一级的一些条目,这工作正常。
此外,我想了解/查看内部操作/消息,例如Connecting to Server..
、Binding to the Directory..
等类似的消息。如您所见,我使用了-v
选项,但没有什么帮助。
有没有办法通过启用某些选项、使用某些不同的命令或其他方法来查看它?
答案1
ldapsearch -d 9 od ldapsearch -d 999
man ldapsearch ... -d debuglevel 将 LDAP 调试级别设置为 debuglevel。ldapsearch 必须在定义 LDAP_DEBUG 的情况下进行编译才能使此选项生效。...