标签:name tab tcl pkg sea title tail config xxxxx
参考链接:
http://blog.csdn.net/guoyuqi0554/article/details/11015403
http://blog.csdn.net/qk1992919/article/details/51249099
1.安装
sudo apt install slapd ldap-utils
2.配置
#dpkg-reconfigure slapd
大致如下:
3.查询配置情况
ldapsearch -x -LLL -H ldap:/// -b dc=debuntu,dc=local dn
输出结果:
dn: dc=debuntu,dc=local
dn: cn=admin,dc=debuntu,dc=local
4.编辑文件add_content.ldif
内容如下:
dn: ou=People,dc=debuntu,dc=local
objectClass: organizationalUnit
ou: People
dn: ou=Groups,dc=debuntu,dc=local
objectClass: organizationalUnit
ou: Groups
dn: cn=miners,ou=Groups,dc=debuntu,dc=local
objectClass: posixGroup
cn: miners
gidNumber: 5000
dn: uid=john,ou=People,dc=debuntu,dc=local
objectClass: inetOrgPerson
objectClass: posixAccount
objectClass: shadowAccount
uid: john
sn: Doe
givenName: John
cn: John Doe
displayName: John Doe
uidNumber: 10000
gidNumber: 5000
userPassword: johnldap
gecos: John Doe
loginShell: /bin/bash
homeDirectory: /home/john
5.执行命令
ldapadd -x -D cn=admin,dc=debuntu,dc=local -W -f add_content.ldif
结果如下:
dn: dc=debuntu,dc=local
dn: cn=admin,dc=debuntu,dc=local
dn: ou=People,dc=debuntu,dc=local
dn: ou=Groups,dc=debuntu,dc=local
dn: cn=miners,ou=Groups,dc=debuntu,dc=local
dn: uid=john,ou=People,dc=debuntu,dc=local
注意:上面的输出都有了,就表明安装配置成功
标签:name tab tcl pkg sea title tail config xxxxx
原文地址:http://www.cnblogs.com/hzijone/p/6337215.html