Where to find the stored SAML SSO configuration in the Database ?

The SAML SSO configurations are splitted in different versions, based on the version of the SAML SSO plugin for Atlassian Data Center / Server application. Please find your correct version in the table:

SAML SSO Plugin version

SAML SSO Configuration version

0.14.7 and less

com.resolution.atlasplugins.samlsso:xmlConfiguration

0.15.0 - 0.15.7

com.resolution.atlasplugins.samlsso:2:xmlConfiguration

2.0.0 - 2.0.12

com.resolution.atlasplugins.samlsso:3:xmlConfiguration

2.1.0 - 2.2.0

com.resolution.atlasplugins.samlsso:4:xmlConfiguration

2.3.0 - 2.3.5

com.resolution.atlasplugins.samlsso:5:xmlConfiguration

2.4.0 - 3.0.3

com.resolution.atlasplugins.samlsso:6:xmlConfiguration

3.1.0 - 3.1.7

com.resolution.atlasplugins.samlsso:7:xmlConfiguration

3.2.2

com.resolution.atlasplugins.samlsso:7:jsonConfiguration

3.2.2

com.resolution.atlasplugins.samlsso:8:jsonConfiguration

3.3.0 - 3.6.5

com.resolution.atlasplugins.samlsso:9:jsonConfiguration

4.x

com.resolution.atlasplugins.samlsso:10:jsonConfiguration

5.x

com.resolution.atlasplugins.samlsso:11:jsonConfiguration

6.x

com.resolution.atlasplugins.samlsso:12:jsonConfiguration


In the following descriptions, we are retrieving all the available configuration records if you have previous versions installed already.

To know which exact one that is currently being used, check the table above for the corresponding configuration version to your current plugin version.

Jira Data Center / Server

Database explorer:

  • Open table PROPERTYENTRY and search in the column "property_key" for the values that start with "com.resolution.atlasplugins.samlsso:".

  • You should see all the configuration records if you have previous versions installed already, check the latest one as per the table above.

  • Check the "ID" column for that row.

  • Open table PROPERTYTEXT and there you should find the column "propertyvalue".

  • Search for the specific row, based on the ID found one step above, and there you should find the SAML SSO plugin configuration information as text

SQL statement:

SELECT propertyentry.property_key, propertytext.propertyvalue
FROM propertyentry
INNER JOIN propertytext ON propertyentry.id=propertytext.id
WHERE property_key LIKE 'com.resolution.atlasplugins.samlsso:%';


Single SQL query to retrieve the data

  1. select*
  2. from propertytext
  3. join propertyentry on propertyentry.id = propertytext.id
  4. where propertyentry.property_key like 'com.resolution.atlasplugins.samlsso:%'


Confluence Data Center / Server

Database explorer:

Table BANDANA → Column "bandanakey": values that start with "com.resolution.atlasplugins.samlsso:" → Column "bandanavalue" → SAML SSO plugin configuration information as text

SQL statement:

SELECT bandanakey, bandanavalue
FROM bandana
WHERE bandanakey LIKE 'com.resolution.atlasplugins.samlsso:%';

Bitbucket Data Center / Server

Database explorer:

Table PLUGIN_SETTING → Column "key_name": values that start with com.resolution.atlasplugins.samlsso: → Column "key_value" → SAML SSO plugin configuration information as text

SQL statement:

SELECT key_name, key_value
FROM plugin_setting
WHERE key_name LIKE 'com.resolution.atlasplugins.samlsso:%';