We don’t allow questions seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
另一种替代方案是 UnboundID LDAP SDK 提供的内存目录服务器,我使用它谈论 这里。无需安装服务器。 LdapListenerExample .java 给出了如何使用内存目录服务器的示例。该示例演示如何创建服务器、启动其侦听、加载作为命令行选项列出的架构文件以及将包含 LDIF 的文件加载到服务器数据库中。
Another alternative is the in-memory directory server provided by the UnboundID LDAP SDK, which I talk about here. There is no need to install a server. LdapListenerExample.java gives an example of how to use the in-memory directory server. The example shows how to create the server, start it listening, load schema files listed as command line options, and load a file containing LDIF into the server database.
不幸的是,我不知道这样的事情。
作为替代方案,我建议您使用 OpenDS,它非常容易部署(例如通过 使用 QuickSetup 安装)并随后删除。它的
import-ldif
、make-ldif
和export-ldif
命令可能对您的工作有用。Unfortunately, I'm not aware of such a thing.
As an alternative, I'd suggest you use OpenDS, which is very easy to deploy (e.g. via Install with QuickSetup) and to get rid of afterwards. It's
import-ldif
,make-ldif
andexport-ldif
commands could be useful for your work.我最近编写了 godap - Go 中的一个非常简约的 LDAP 服务器库。它不读取 LDIF,但您可以轻松地使其响应绑定和搜索操作。 (它还可以提供对 LDAP 协议的深入了解。)
I recently wrote godap - a very minimalistic LDAP server library in Go. It doesn't read LDIFs, but you can easily make it response to bind and search operations. (It also may provide insight into the LDAP protocol.)