简体   繁体   English

将用户添加到 IBM 目录服务器 (LDAP) 中的组

[英]adding users to group in IBM Directory server (LDAP)

Can some one tell me how to add users to group using ldif file?有人可以告诉我如何使用 ldif 文件将用户添加到组中吗? what should be in the ldif file for example cn=group1,ou=Groups,dc=mydom,dc=com changetype: modify what else? ldif 文件中应该有什么,例如 cn=group1,ou=Groups,dc=mydom,dc=com changetype: 还修改什么?

Thanks Borna谢谢博尔纳

It would depend on objectclass you're using for group.这将取决于您用于组的对象类。 If it's groupOfNames , LDIF file would be:如果是groupOfNames ,LDIF 文件将是:

dn: cn=group1,ou=Groups,dc=mydom,dc=com
changetype: modify
add: member
member: *DN_you_want_to_add_goes_here*

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Ldap 查询以获取 Active Directory 中组的用户 - Ldap query to get users of a group in Active Directory 在没有ldap_mod_add()的情况下将用户添加到LDAP组 - Adding users to an LDAP group without ldap_mod_add() 如何在Springboot中从Active Directory LDAP服务器获取所有组用户? - How to get All Group Users from Active Directory LDAP Server in Springboot? 将LDAP用户与Weblogic服务器本地组相关联 - Associate LDAP users to weblogic server local group 从某个组ldap活动目录中验证用户 - Authenticating users from a certain group ldap active directory Active Directory:通过 C++ 在 LDAP 中搜索用户/组 - Active Directory: Searching Users/Group in LDAP via C++ 将大量用户添加到Active Directory中的组 - Adding large number of users to a group in Active Directory 如何在IBM Connections 3.0.1中从LDAP目录外部为用户实现注册? - How to implement registration for the users from outside of LDAP directory in IBM Connections 3.0.1? 操作系统看不到LDAP服务器上的用户辅助组 - Os doesn't see users secondary group from LDAP server 如何在 IBM Tivoli Directory Structure Web Administration Tool 中查看现有 LDAP 用户 - How to view existing LDAP users in IBM Tivoli Directory Structure Web Administration Tool
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM