Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×In the User Management console of Bamboo, I'm currently unable to remove the local user (no delete link for either AD or local user).
Deleting using the UI is straightforward and since there is also no confirmation dialog the process is fast although admittedly, it requires a lot of clicking in the same place!
SELECT * FROM users WHERE id=1
If you cannot remember the password for this user you can update it directly in the database by providing a known hash using these instructions: https://confluence.atlassian.com/bamboo/restoring-passwords-to-recover-admin-users-289277354.html
To re-add the LDAP configuration:
Thanks,
Hello Curtis,
Thank you for your question.
In "<bamboo-home>/xml-data/configuration/atlassian-user.xml" you should have the following configuration:
<atlassian-user> <repositories> <!-- LDAP repository --> <ldap key="ldapRepository" name="Active Directory LDAP Repository" cache="true"> <!-- your LDAP configuration --> </ldap> <!-- Default bamboo user repository --> <hibernate name="Hibernate Repository" key="hibernateRepository" description="Hibernate Repository" cache="true"/> </repositories> </atlassian-user>
Based on the above configuration, you are able to log in to Bamboo using LDAP users and Bamboo Internal Directory users. In case you are not using Bamboo Internal Directory users to log in to Bamboo, you could go to the same "atlassian-user.xml" configuration file and comment out <hibernate/>. As a result, you should have:
<atlassian-user> <repositories> <!-- LDAP repository --> <ldap key="ldapRepository" name="Active Directory LDAP Repository" cache="true"> <!-- your LDAP configuration --> </ldap> <!-- Default bamboo user repository --> <!-- <hibernate name="Hibernate Repository" key="hibernateRepository" description="Hibernate Repository" cache="true"/> --> </repositories> </atlassian-user>
Once the change is made, please stop and start Bamboo.
If you find this answer useful, I would kindly ask you to accept it so the same will be visible to others who might be facing the same issue you have inquired.
Thank you for your understanding.
—
Kind regards,
Rafael P. Sperafico
Atlassian Support
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Do not remove the internal directory under any circumstance as this will cause unexpected behavior in Bamboo.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.