You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi,
I followed the instructions below to recover Bamboo login.
However, when I logged in to Bamboo and I clicked on the cog icon on the top right hand corner of the page, all I see is Linked Repositories under Bamboo Administration. Normally, I can see Overview, Agents, Global Variables, Linked repositories, User Management and Add-ons.
Has anyone come across this issue before?
Regards,
Alex
Hi Alex,
It looks like the local user doesn't have "Admin" rights. Are you sure that this user is a member of the bamboo-admin group? Also, if you're using LDAP could you please check if this user is also available in the LDAP server? If yes please remove the LDAP parameters from the atlassian-user.xml file, restart Bamboo and try again.
To check the permissions from the database, please run the below query:
SELECT AE.SID AS NAME,
(CASE
WHEN AE.TYPE = 'PRINCIPAL'
THEN 'USER'
WHEN AE.TYPE = 'GROUP_PRINCIPAL'
THEN 'GROUP'
END) as USER_OR_GROUP,
(CASE
WHEN MASK = 1
THEN 'ACCESS'
WHEN MASK = 4
THEN 'CREATE PLAN'
WHEN MASK = 1024
THEN 'CREATE REPOSITORY'
WHEN MASK = 16
THEN 'ADMIN'
END) as PERMISSION_TYPE
FROM ACL_ENTRY AS AE
JOIN ACL_OBJECT_IDENTITY AS AOI
ON AE.ACL_OBJECT_IDENTITY = AOI.ID
WHERE AE.TYPE IN ('PRINCIPAL','GROUP_PRINCIPAL')
AND AE.GRANTING = true
AND ACL_OBJECT_IDENTITY='65537'
ORDER BY NAME, PERMISSION_TYPE;
From: How to retrieve user and group access mappings / permissions from the Bamboo database
thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.