LDAP 学习

测试网速的命令:

ping -n 5 -l 1472 -f www.sina.com.cn


LDAP:

如果你把 ldap 安装为 windows 服务,你可以像我一样启动:

net start OpenLDAP-slapd

net stop OpenLDAP-slapd

ldapadd -x -D "cn=Manager,dc=grid,dc=nwu" -W -f example.ldif

** 注意: 在第一次添加的时候要讲默认的库 添加进去才可以,否则会报错误 Object 找不到!!!
dc=example,dc=com is not there by default, you have to add it as the first entry.
Your when you are trying to add you are assuming dc=example,dc=com is there,
just remove the fred walter and try again

将每一个目录ENTRY看作是一个统一表的一行,然后把属性看作列

FAQ:
1:
windows下的openldap,filter 不能家单引号 如下(去掉单引号)
ldapsearch -x -b dc=grid,dc=nwu (objectclass=*)

2:
用到的objectclass (处在schema中定义) 必须在 slapd.conf 中include进来,否则报错误

3:
dn: cn=JSmith,ou=Managerment,dc=grid,dc=nwu
cn: James Smith,Jim Smith,Jimmy Smith
这里的dn中的cn  和属性中的cn  必须是一样的,否则报错误:alue of naming attribute 'cn' is not present in entry

4:扩展schema
http://blog.csdn.net/wcy1323/archive/2006/04/26/678459.aspx

你可能感兴趣的:(LDAP 学习)