We deleted by accident the bamboo admin users by adding an extra user and not selecting all the users in the "existingusers in group" pannel.
We cannot restore the database in the production environment so we want to restore to another server and manueally retrieve all the users in the postgresql tables.
Can anybody help with the location of the tables or provide us with a query that gives us the users in the bamboo-admin group.
Look at LOCAL_MEMBERS table
then check EXTERNAL_MEMBERS table
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Alexey.
I started with that table and found out the rest ! Thanks in advance.
Here's my query that lists the groups and their members:
SELECT em.extentityid, em.groupid, ee.name, ee.type, gr.groupname
FROM public.external_members em
inner join public.groups gr on (em.groupid=gr.id)
inner join public.external_entities ee on (em.extentityid=ee.id)
order by gr.groupname, ee.name;
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.