打开ldap修改-/usr/bin/modify问题

发布于 2024-08-18 06:00:14 字数 276 浏览 5 评论 0原文

谁能帮我解决这个问题吗?我正在尝试在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

绾颜 2024-08-25 06:00:14

尝试使用 -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.

海未深 2024-08-25 06:00:14

确保您在架构中定义了 status 属性(该属性无法添加到条目中,除非该条目具有允许 status< /code> 属性)。另外,认证身份cn=Test,ou=mygroup.com,o=group2.com必须有添加该属性的权限。

使用ldapmodify 添加status 属性:

ldapmodify -x -D "cn=Test,ou=mygroup.com,o=group2.com" -h hostname -p port <<!
version: 1
dn: uid=user.0,ou=people,dc=example,dc=com
changetype: modify
add: status
status: first value
status: second value
!

上面的示例向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 an objectClass attribute value that allows the status attribute). Further, the authentication identity cn=Test,ou=mygroup.com,o=group2.com must have permission to add the attribute.

Use ldapmodify to add the status attribute:

ldapmodify -x -D "cn=Test,ou=mygroup.com,o=group2.com" -h hostname -p port <<!
version: 1
dn: uid=user.0,ou=people,dc=example,dc=com
changetype: modify
add: status
status: first value
status: second value
!

The above example adds two values to the status attribute (assuming it is a multi-valued attribute). For more information about the ldapmodify tool see "Using ldapmodify".

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文