1.利用pl脚本将/etc/passwd 和/etc/group生成LDAP能读懂的文件格式
yum install -y migrationtools
获取用户信息追加到一个文件中:cat /etc/passwd > people
获取组信息追加到一个文件中:cat /etc/group > group
根据people生成ldap用户数据文件people.ldif /usr/share/migrationtools/migrate_passwd.pl people people.ldif
根据group生成ldap组的数据文件 group.ldif /usr/share/migrationtools/migrate_group.pl group group.ldif
导入用户:ldapadd -x -D "cn=Manager,dc=joydata,dc=com" -W -f people.ldif
导入组:ldapadd -x -D "cn=Manager,dc=joydata,dc=com" -W -f group.ldif
ldapsearch查看用户的数据:
ldapsearch -x -W -D "uid=zhangyuntao,ou=People,dc=joydata,dc=com"
输入ldap的密码就能看到该用户的信息了。
网友评论