Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,555,129
Community Members
 
Community Events
184
Community Groups

Bamboo Admin Issue

Hello I recently have been trying to upgrade our ancient installation of bamboo server.

 

I successfully completed the setup and imported the new data to the new external database instead of embedded, and i walked away whiel it imported.  I came back and was presented with a login screen so i logged in as myself and I am no longer an admin.  Nobody that logs in is an admin so we can't do anything witht he settings of the software.  

 

How do I grant myself admin privileges if nobody is an admin.

1 answer

0 votes
Daniel Santos
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
Jul 15, 2019

Hi @ShowMgr_IT

That is really strange.

My suggestion is that we check if there is any user with admin permissions in your Bamboo DB, so you could use that user to reestablish the permissions in your instance.

Please try this query directly to your Bamboo DB:

SELECT (CASE
          WHEN AE.TYPE = 'PRINCIPAL'
               THEN 'USER'
          WHEN AE.TYPE = 'GROUP_PRINCIPAL'
               THEN 'GROUP'
        END) as USER_OR_GROUP,
        (CASE
           WHEN AE.SID = 'ROLE_ANONYMOUS'
               THEN 'Anonymous users'
           WHEN AE.SID = 'ROLE_USER'
               THEN 'Logged in users'
           ELSE AE.SID
        END) AS NAME,
        MASK,
        (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.GRANTING = true
      AND AOI.OBJECT_ID_CLASS='com.atlassian.bamboo.security.GlobalApplicationSecureObject'
ORDER BY USER_OR_GROUP, PERMISSION_TYPE;

Reference: How to retrieve user and group access mappings / permissions from the Bamboo database - Atlassian Documentation.

The query above should return users and groups set in global permissions. The permissions should appear in the last column.

Are there any changes in the user repositories of your instance?
Did you use LDAP or something in the past?

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events