How to Enable Secure Administration for Cloud Backup restored in Server Instance for JIRA

Platform Notice: Data Center Only - This article only applies to Atlassian apps on the Data Center platform.

Note that this KB was created for the Data Center version of the product. Data Center KBs for non-Data-Center-specific features may also work for Server versions of the product, however they have not been tested. Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.

*Except Fisheye and Crucible

Problem

Restoring backup from cloud backup will disable secure administration function as this function is not available in JIRA Cloud. Secure administration is a feature that require double authentication before performing any administrative function in JIRA server instance.

Resolution

Make backups before starting this process. As per Atlassian Support Offerings the modification for your SQL database and entities.xml is not supported by Atlassian.

There are two method to enable secure administration in JIRA after cloud backup restoration as mmentioned below:

Delete OS Property Entry Id in Cloud Backup before Restoration

  1. Extract the cloud backup and open entities.xml in a text editor

  2. Find

    <OSPropertyEntry id="10103" entityName="jira.properties" entityId="1" propertyKey="jira.websudo.is.disabled" type="1"/>

    in your entities.xml and delete it

  3. Repack your edited entities.xml together with activeobject.xml and restore the backup.

  4. Restart JIRA

  5. Login as Administrator and test secure administration function.

Cloud backup already restored and secure administration is not enabled

  1. Run below query in you database

    SELECT * FROM propertyentry WHERE property_key='jira.websudo.is.disabled';
  2. You will get the result as shown below:

    (Auto-migrated image: description temporarily unavailable)
  3. Run this query to delete the entry

    DELETE FROM propertyentry WHERE property_key='jira.websudo.is.disabled';
  4. Restart your JIRA instance and try secure administration access.

Updated on April 8, 2025

Still need help?

The Atlassian Community is here for you.