Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 java中LDAP使用spring对用户进行身份验证。我发现对于LDAP使用spring的配置,我需要urls、userDn、密码和基本值,如下所示:
LDAP
urls=ldap://127.0.0.1:389 userDn=cn=Directory Manager password=abcd base=dc=example,dc=com
我的问题是,这个userDn和base到底是什么?这些意味着什么?我们需要在这个配置中指定哪个userDn值?
这base object是目录信息树 (DIT) 中的点,搜索应该开始为要在搜索结果中返回的条目构建候选者。搜索的scope搜索确定树的深度如下:
base object
scope
在userDn这种情况下,似乎是用户的专有名称,该用户将使用 BIND 请求对目录进行身份验证。
userDn