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,644,485
Community Members
 
Community Events
196
Community Groups

Reset Login count in Jira

How to reset Login Count In JIRA for a particular user. 

We are implementing integration with Service Now with Rest APIs and the SN team is hitting JIRA application with APIs and every hit is being counted as a login attempt. Hence the login attempts have risen upto 200k in about 2 months. Please suggest.

1 answer

1 accepted

0 votes
Answer accepted
Timothy
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Dec 27, 2016

The only way to do this is to edit it from the DB itself.

so there is no REST API for resetting the login count? 

can you let me know what is the db statement to reset it?

This worked for me - don't forget to change the <schema> to your schema name and change <USERNAME> to the login name the user uses.

UPDATE <schema>.cwd_user_attributes
SET attribute_value = 1 FROM <schema>.cwd_user_attributes WHERE attribute_name = 'login.count' and user_id = (SELECT id FROM <schema>.cwd_user WHERE user_name = '<USERNAME>');

Remember, tho; Always attempt in DEV before PRODUCTION

Francesco R
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Mar 11, 2020

Hi,

the correct command is without

FROM <schema>.cwd_user_attributes

so it should be:

UPDATE <schema>.cwd_user_attributes SET attribute_value = 1 WHERE attribute_name = 'login.count' and user_id = (SELECT id FROM <schema>.cwd_user WHERE user_name = '<USERNAME>');

but I've a question.
What about the "lower_attribute_value" in the "cwd_user_attributes" table ?
In my table it has the same value of attribute_value. What is it for ? I see it's increased in the same way of "attribute_value"

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events