美文网首页
linux用户,组迁移ldap服务中

linux用户,组迁移ldap服务中

作者: hbtszyt | 来源:发表于2018-09-19 08:15 被阅读0次

    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的密码就能看到该用户的信息了。

    相关文章

      网友评论

          本文标题:linux用户,组迁移ldap服务中

          本文链接:https://www.haomeiwen.com/subject/ojjbnftx.html