The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
How can I migrate users from an internal Crowd directory into Active Directory or another LDAP server?
Is it possible to create an LDIF export of an internal Crowd directory?
You can make LDIF file by using sql query, it's easier than using API. The following code used for Jira, you can do the same thing with Crowd database ( cwd_user table)
select 'dn: cn=' || username || ',ou=users,dc=erx' || chr(13) || 'objectClass: person' || chr(13) || 'objectClass: top' || chr(13) || 'email: ' || (select propertyvalue from propertystring ps inner join propertyentry pe on ps.id = pe.id where pe.entity_id = ub.id and entity_name = 'OSUser' and property_key = 'email') || chr(13) || 'uid: ' || username || chr(13) || 'cn: ' || username || chr(13) || 'structuralObjectClass: person' || chr(13) || 'givenName: ' || (select propertyvalue from propertystring ps inner join propertyentry pe on ps.id = pe.id where pe.entity_id = ub.id and entity_name = 'OSUser' and property_key = 'fullName') || chr(13) || chr(13) from userbase ub;
Hi
We would like to move the crowd groups to AD.
is it possible?
Thanks
Arasu
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
As this is a new question, you shouldn't add it as an answer to my question, but rather as a new question.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm guessing you could use the API to query each account and then output it in LDIF format. I guess then your question would now be, if there is an existing solution to this that is known to work, so you don't have to do it yourself.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, doing it yourself is always an option. I hoped for an existing solution. Thanks anyways!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello everyone, Hope everyone is safe! A few months ago we posted an article sharing all the new articles and documentation that we, the AMER Jira Service Management team created. As mentioned ...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.