如何使用 JNDI/LDAP 以编程方式在 ApacheDS 服务器的根目录中创建分区?
我正在尝试使用 JNDI/LDAP 在 ApacheDS 轻量级目录的根目录中创建一个新分区。我尝试在根上下文中使用 bind 和 createSubcontext 添加它失败。我可以使用 Apache Directory Studio 创建分区。有没有一种方法可以使用 JNDI 以编程方式添加一个?
I'm trying to create a new partition in the root of a ApacheDS Lightweight Directory using JNDI/LDAP. I've failed trying to add it using bind and createSubcontext within the root context. I'm able to create a partition using Apache Directory Studio. Is there a way to programmatically add one using JNDI?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法使用代码创建新分区,您首先需要在
server.xml(如果您使用的版本 <= 1.5.7)或在 ou=config 区域(如果您使用的是最新的主干)。
配置分区并重新启动服务器后,您可以使用代码创建
上下文条目之后分区对于执行其他操作是可见的。
You cannot create a new partition using code, you first need to configure the partition in the
server.xml(if you are using version <= 1.5.7) or in the ou=config area if you are using the latest trunk.
Once you configure the partition and restart the server then using code you can create the
context entry after which the partition is visible for performing other operations.