Is it possible to configure the LDAP service in my Rally on-premises appliance to populate the first name, last name and display name fields in the user profile?
Yes, it is possible to configure the Rally appliance to populate the Rally first name, last name and display name fields in the user profile.
In order to acquire root access please review the article on Requesting and updating the root password
The specific LDAP attributes may vary from LDAP vendor to LDAP vendor. In general Microsoft Windows Active directory will use the following attributes:
It is always best to check with your LDAP administrator to be certain you have the correct attributes.
/var/www/html/controlpanel/actionfiles/ldap/default-rally-ldap.xml
<!--Enter LDAP attribute name between each tag. Only used if provisioning new users in Rally -->
<RallyFirstName>givenName</RallyFirstName>
<RallyLastName>sn</RallyLastName>
<RallyDisplayName>displayname</RallyDisplayName>
/opt/RallyOnPrem/web/var/www/html/controlpanel/actionfiles/ldap/LdapServiceConnector.php
var $_ldapblanks = array('RallyFirstName','RallyLastName','RallyDisplayName','LdapEncryptedPassword','RallyEncryptedPassword','RunInterval');
var $_ldapblanks = array('LdapEncryptedPassword','RallyEncryptedPassword','RunInterval');