打开ldap修改-/usr/bin/modify问题
谁能帮我解决这个问题吗?我正在尝试在 LDAP 上添加另一个属性,但我对此了解不多。尝试我在网上搜索的示例后,它返回一个错误。该命令将在我的 perl 程序上使用,以添加新属性“status”w/值“yes”..
请帮忙?
/usr/bin/ldapmodify -x -D "cn=Test,ou=mygroup.com,o=group2.com" -a "status=yes"??
-W 也不起作用。
错误:ldap_bind:无法联系 LDAP 服务器 (-1)
Can anyone help me out on this? I'am trying to add another attribute on my LDAP, but i don't know much about this. It returns an error after trying the sample i searched on net. This command will be used on my perl program to add new attribute "status" w/ value "yes"..
Help pls?
/usr/bin/ldapmodify -x -D "cn=Test,ou=mygroup.com,o=group2.com" -a "status=yes"??
the -W doesn't work too.
Error: ldap_bind: Can't contact LDAP server (-1)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试使用 -v 来获取详细日志,而 -w 应该是小写。至于排除密码,一种方法是使用“-w -”,系统将提示您输入密码。希望这有帮助。
Try -v for detail log and -w should be in lower case. As for excluding the password one way is to use '-w -' which you will be prompt to enter the password. Hope this helps.
确保您在架构中定义了
status
属性(该属性无法添加到条目中,除非该条目具有允许status< /code> 属性)。另外,认证身份
cn=Test,ou=mygroup.com,o=group2.com
必须有添加该属性的权限。使用
ldapmodify
添加status
属性:上面的示例向
status
属性添加两个值(假设它是多值属性)。有关 ldapmodify 工具的更多信息,请参阅 “使用 ldapmodify”。Ensure that you have the
status
attribute defined in the schema (the attribute cannot be added to an entry unless the entry has anobjectClass
attribute value that allows thestatus
attribute). Further, the authentication identitycn=Test,ou=mygroup.com,o=group2.com
must have permission to add the attribute.Use
ldapmodify
to add thestatus
attribute:The above example adds two values to the
status
attribute (assuming it is a multi-valued attribute). For more information about theldapmodify
tool see "Using ldapmodify".