Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×Hi,
I got a problem while searching the database tables to find the table that contains the JIRA License Key. Any body help me in which table it will store
Thanks in advanse
Hi Nageswarara,
You can find the license stored in the propertytext table.
Try running the following to find it.
select * from propertytext where id = (select id from propertyentry where property_key = 'License20')
Hope this helps,
Marcus
hello everybody
i want to create a nagios script that checks the license expiration date, somebody knows in which table could i find it?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It's not. It's calculated from the key.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
How can I find the usage for roadmap plugin in our jira instance. What is the database query to find out the usage for roadmap plugin? Any help will be greatly appreciated.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That has nothing to do with this question.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Natalie,
This query should give you the add-ons license you have:
SELECT * FROM public.propertyentry pe JOIN public.propertytext pt on pe.id=pt.id WHERE pe.property_key like 'com.atlassian.upm.license%';
If you go to JIRA and compare the returned keys you should be able to identify what is the propery key for the specific plugin you want which in this case (Service Desk) is:
com.atlassian.upm.license.internal.impl.PluginSettingsPluginLicenseR339b1704e923b2280c224738f2d48ceb
To understand the above I had to enable the SQL logs and change the license.
To enable the SQL logs: https://confluence.atlassian.com/display/JIRAKB/Enabling+detailed+SQL+logging+in+JIRA
I hope it helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
it is propertytext
you check the link https://answers.atlassian.com/questions/158813/how-to-embed-jira-license-key-as-part-of-jira-config-without-entering-it-from-the-ui#158968
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Everyone,
after setingup new JIRA service on own server I'm unable to restore DB. There we no backups from JIRA made, only MySQL DB.
java.lang.RuntimeException: org.apache.jasper.JasperException: com.atlassian.extras.decoder.api.LicenseDecoderNotFoundException: Could not find any valid decoders in [com.atlassian.extras.decoder.v2.Version2LicenseDecoder@5a2a6697, com.atlassian.extras.decoder.v1.Version1LicenseDecoder@4d5979b4] for license string <>
JIRA version is:
6.4.1
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Please help in searching the database tables to find the table that contains the Confluence License Key and confluence plug-in License Key.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Is there a way to get the license of add-ons like JIRA Agile or JIRA Service Desk by querying the database?
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.