You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Licensing for Jira is currently applied by navigating throughout the Jira GUI and my.atlassian.com. A way should be provided to do this without the GUI. Perhaps a UNIX shell or batch file.
Here are some resources and commands that can be used:
Another way to do this is through the H2 console app
docker run -it -v /home/john/repos/jira-xray/jiraVolume:/var/atlassian/application-data/jira atlassian/jira-software /bin/bash
java -cp java -cp h2-1.4.199.jar org.h2.tools.Shell
URL: jdbc:h2:file:/var/atlassian/application-data/jira/database/h2db
SELECT * FROM productlicense;
update productlicense set license ='' where id = 10100;
select * from propertytext where propertyvalue like '<license key of xray';
update propertytext set propertyvalue = '' where propertyvalue like 'AAA%';
The text was updated successfully, but these errors were encountered:
Licensing for Jira is currently applied by navigating throughout the Jira GUI and my.atlassian.com. A way should be provided to do this without the GUI. Perhaps a UNIX shell or batch file.
Here are some resources and commands that can be used:
https://confluence.atlassian.com/jirakb/how-to-retrieve-application-license-details-via-rest-api-in-jira-7+-934728265.html
https://confluence.atlassian.com/jirakb/how-to-access-upm-rest-api-for-license-details-777021716.html
Another way to do this is through the H2 console app
The text was updated successfully, but these errors were encountered: