Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

Is it possible to replace white space with another character like underscore when syncing users and groups from LDAP to Ambari?

avatar
Contributor

Is it possible to replace white space with another character like underscore when syncing users and groups from LDAP to Ambari?

e.g. "Takefumi Oide" -> "Takefumi_Oide"

If yes, How?

1 ACCEPTED SOLUTION

avatar

Hi @Takefumi Oide ,

there is no way we can replace the white space in CN while you are syncing the LDAP to ambari.

you might need to do it in LDAP only using ldapmodify command.

Ambari just performs the sync based on the command like : ambari-server sync-ldap --ldap-sync-admin-name=admin --ldap-sync-admin-password=admin --all

but in ranger, you can achieve the same.

Follow this doc for the same : https://community.hortonworks.com/articles/86353/converting-spaces-in-usernames-or-group-names-in-r....

View solution in original post

2 REPLIES 2

avatar

Hi @Takefumi Oide ,

there is no way we can replace the white space in CN while you are syncing the LDAP to ambari.

you might need to do it in LDAP only using ldapmodify command.

Ambari just performs the sync based on the command like : ambari-server sync-ldap --ldap-sync-admin-name=admin --ldap-sync-admin-password=admin --all

but in ranger, you can achieve the same.

Follow this doc for the same : https://community.hortonworks.com/articles/86353/converting-spaces-in-usernames-or-group-names-in-r....

avatar
Contributor

Thank you for your answer!