Hi,
Can you please help me to get user list with their name, userid and email address
from jira server( linux login with postreg db).
Regards,
Suma
Hope, this will help you. It's very similar to your question
Or here link to Atlassian KB:
@Evgenii thank for the response. This would yeild in providing last login but i would need project wise active user list
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Welcome to Atlassian community!
Please use the below command to connect with PostgreSQL dB in Linux.
Once you are connected to the database, execute the following SQL query to retrieve the user list
Please accept the Answer If it helps you.
Thanks
Regards,
Sanjen
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Greetings.
If you need the the list project wise active list.
Please user the below query.
SELECT lower_user_name AS username, display_name, email_address, p.pname AS project_name
FROM cwd_user u
JOIN projectroleactor pra ON u.directory_id = pra.directory_id AND u.lower_user_name = pra.roletypeparameter
JOIN project p ON p.id = pra.project_id;
Please accept the answer If it helps you!
Regards,
Sanjen Bariki
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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.