9.3. 以互动方式使用 ldapmodify 命令
您可以在交互模式中修改轻量级目录访问协议 (LDAP) 条目。
流程
在命令行中,在
ldapmodify
命令后输入 LDAP Data Interchange Format (LDIF) 语句。例 9.1. 更改 testuser 的电话号码
# ldapmodify -Y GSSAPI -H ldap://server.example.com dn: uid=testuser,cn=users,cn=accounts,dc=example,dc=com changetype: modify replace: telephoneNumber telephonenumber: 88888888
请注意,您需要使用
-Y
选项获取 Kerberos ticket。-
按
Ctlr+D
退出交互模式。 或者,在
ldapmodify
命令后提供 LDIF 文件:例 9.2.
ldapmodify
命令从 LDIF 文件中读取修改数据# ldapmodify -Y GSSAPI -H ldap://server.example.com -f ~/example.ldif
其他资源
-
有关如何使用
ldapmodify
命令的更多信息,请参阅ldapmodify(1)
手册页。 -
有关
LDIF
结构的更多信息,请参阅ldif(5)
手册页。