Remove the Jira server announcement banner through the database

Still need help?

The Atlassian Community is here for you.

Ask the community

Symptoms

After modifying the contents of JIRA's Announcement Banner, pages are not loading properly, making it impossible to reach the page to edit the contents of the Announcement Banner.

Diagnosis

The Announcement Banner was recently changed, causing all pages in JIRA to not render properly.

Cause

Contents in the Announcement Banner may cause all pages in JIRA to become useless.

Resolution

  • Stop JIRA
  • Backup database
  • Run the following SQL to remove the contents of the Announcement Banner:

    DELETE from propertytext WHERE ID = (select id from propertyentry where property_key='jira.alertheader');
    DELETE from propertystring where ID = (select id from propertyentry where property_key='jira.alertheader.visibility');
    DELETE from propertyentry where property_key in ('jira.alertheader','jira.alertheader.visibility');

    (info) The above SQL commands will remove the contents of the Announcement Banner.

  • Start JIRA

Last modified on Sep 25, 2019

Was this helpful?

Yes
No
Provide feedback about this article
Powered by Confluence and Scroll Viewport.