如何在 ApacheDS 中创建自定义属性?
我正在尝试在 ApacheDS 中创建自定义属性,我遵循现有属性并创建了一个名为“passwordUpdateTime”的新属性:
但是当我想将其添加到我的 person 对象中时,我在列表中找不到:
如果我强制添加该属性,ApacheDS 会阻止我这样做:
有人遇到过同样的情况吗之前有问题吗?
谢谢, 狮子座
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果 Apache DS 独立运行,您需要重新启动服务器以使属性可见(至少在里程碑 M-17 之前)Apache DS 方案不是动态的。
in case of the Apache DS running stand alone you need to restart the server to make the atrribute visible (at least until milestone M-17) Apache DS scheme is NOT dynamic.
该解决方案对我有用。
从 inetOrgPerson 架构中将任何现有属性导出为 .ldif 文件
1. 使用 ApacheDS
2. 在 ApacheDS 中打开导出的属性 .ldif 文件并根据您的需要编辑属性并运行文件
3. 运行文件后,验证您新创建的属性是否列在“ou=attributeTypes,cn=inetorgperson,ou=schema”
4. 现在将 inetOrgPerson objectClass 导出为 .ldif 文件,列在“ou=objectClasses,cn=inetorgperson,ou=schema”
5.导出后,验证inetOrgPerson objectClass是否导出成功。验证完毕后,从“ou=objectClasses,cn=inetorgperson,ou=schema”位置删除inetOrgPerson objectClass
< img src="https://i.sstatic.net/eAKv4.png" alt="在此处输入图像描述">
6. 现在打开导出的 .ldif 文件,其中包含导出位置中的 inetOrgPerson objectClass。输入自定义属性的名称并运行文件
7. 现在您将能够使用自定义添加的属性。添加新条目,并且必须重新加载架构。
繁荣
The solution worked for me.
1. Export any existing attribute as .ldif file from the schema of inetOrgPerson using ApacheDS
2. Open the exported attribute .ldif file in ApacheDS and edit the attribute according to your needs and Run the file
3. After running the file verify that your new created attribute is listed under "ou=attributeTypes,cn=inetorgperson,ou=schema"
4. Now export the inetOrgPerson objectClass as .ldif file, listed under "ou=objectClasses,cn=inetorgperson,ou=schema"
5. After exporting, verify that inetOrgPerson objectClass is exported successfully. After verifying, delete the inetOrgPerson objectClass from the location "ou=objectClasses,cn=inetorgperson,ou=schema"
6. Now open the exported .ldif file containing inetOrgPerson objectClass from the exported location. Put the names of your custom attributes and Run the file
7. Now you'll be able to use your custom added attributes. Add new entry, and must reload schema.
Boom