Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
jmd
Contributor
Contributor

tLDAPOutput : how to move an Active directory entry from a CN to a OU

Hi,
I created a new job to update Active Directory entries, but I didn't succeed to change the parent container of an entry
Has anyone already done it ?
What is the good way to do it ?
Thanks in advance.
Labels (2)
1 Solution

Accepted Solutions
Victor_IAD
Contributor II
Contributor II

Finally found a solution : tLDAPRenameEntry did exactly the job. Just need to pass 2 parameters : oldDN and newDN...

View solution in original post

13 Replies
Anonymous
Not applicable

This component cannot do this alone. It is only an output component. You need to read + modify and write into LDAP.
tLDAPInput --- tMap --- tLDAPOutput with changed content for the attributes.
You can also dealing with LDIF files and do nearly the same.
jmd
Contributor
Contributor
Author

Thank you but I already did that
I will be more specific : I did update an open LDAP directory, but can't do it on an MS Active Directory
Has anybody done that with Talend ?
Anonymous
Not applicable

I am also interested in this question.
I want to use Talend to change the DN of an Active Directory record.
Specifically, want to move a disabled Active Directory account (userAccountControl = 514) to the OU=Disabled Objects.
Will experiment and report back. 
v_c
Contributor
Contributor

I have exacty the same problem of you 'gare_c'.

 

I want to move a disabled active directory account to an other OU.

 

Did you succeed?

 

Victor_IAD
Contributor II
Contributor II

Hi !

Didi you find any solution to this ?

Victor_IAD
Contributor II
Contributor II

Finally found a solution : tLDAPRenameEntry did exactly the job. Just need to pass 2 parameters : oldDN and newDN...

kmp_2011
Contributor
Contributor

Hi,

can you show, what you configured in oldDN an newDN maybe in tMap(?).

I just need an example to unterstand.

 

thx Katja

 

Victor_IAD
Contributor II
Contributor II

Hi Katja,

Yes in the tMap, specify oldDN with the current entry DN, and newDN with the DN where you want to move your entry.

In my case :

  • oldDN = CN=firstName.lastName;OU=Users On;OU=Users
  • newDN = CN=firstName.lastName;OU=Users Off;OU=Users

So as to move user from enabled users OU (Users On) to disabled users OU (Users Off).

kmp_2011
Contributor
Contributor

but nothing else? only this two options?