Active Directory的LDAP用户移动到不同的OU - 红宝石 [英] Active Directory LDAP move user to different OU - Ruby

查看:597
本文介绍了Active Directory的LDAP用户移动到不同的OU - 红宝石的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在与Active Directory集成碰钉子。我需要能够将用户从一个OU到另一个。我使用的净LDAP 0.5.0这是在github主分支源$ C ​​$ C挖了一圈,发现了,你能做到这一点。

I have hit a snag in my integration with Active Directory. I need to be able to move users from one OU to another. I'm using net-ldap 0.5.0 which is on github master branch and dug around in the source code and found out you could do this

$ldap.rename(
             olddn: "cn=bradford ricechip,ou=agents,ou=ihs,ou=test environment,dc=ctatechs,dc=com", 
             newrdn: "cn=bradford ricechip", 
             new_superior: "ou=coach,ou=ihs,ou=test environment,dc=ctatechs,dc=com"
) 

我收到:#< OpenStruct code = 53,ERROR_MESSAGE =00000057:LdapErr:DSID-0C090A95,注释:旧RDN必须被删除,数据0,v1772 \ X00 matched_dn =,消息=不愿履行> 。我想我不明白我怎么可以删除然后将旧RDN用户移动到一个新的OU。

I'm getting: #<OpenStruct code=53, error_message="00000057: LdapErr: DSID-0C090A95, comment: Old RDN must be deleted, data 0, v1772\x00", matched_dn="", message="Unwilling to perform"> . I guess I don't understand how I can delete the old RDN then move the user to a new OU.

这是我遇到的唯一问题。如果我需要提供别的只是让我知道。在此先感谢所有帮助!

This is the only issue I'm having. If I need to provide anything else just let me know. Thanks in advance for all of the help!

推荐答案

这是我们如何解决它:

@ldap.rename(olddn: user.dn, newrdn: "CN=#{user.cn}", delete_attributes: true, new_superior: "#{new_ou}")

我们还使用LDAP的红宝石版本Github上没有版本的RubyGems。

We also used the version of ldap-ruby on Github not the version on RubyGems.

这篇关于Active Directory的LDAP用户移动到不同的OU - 红宝石的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆