我在LDAP目录中有以下条目:
dn: ou=Users,dc=itau,dc=co
objectClass: organizationalUnit
ou: Users
不幸的是,我忘了添加gid
属性。因此,我创建了以下名为“modify.ldif”的LDIF文件:
dn: ou=Users,dc=itau,dc=co
changetype: modify
add: gid
gid: 20000
但是当我运行命令时
ldapmodify -x -D "cn=admin,dc=itau,dc=co" -w <PASSWORD> -H ldap:// -f modify.ldif
我收到错误:
ldap_modify: Undefined attribute type (17)
additional info: gid: attribute type undefined
重要的是要说我在每一行的末尾检查了空格,但这个错误并没有消失。
为什么我收到此错误?。
谢谢。