We are using exalate over 6 months now. Now we are updating the base URL for the internal Jira( http to https) so once we update the url how the exalate connection behave? If we update the URL in the external Jira side with the new internal Jira url then the sync will works as usual or do we have to follow any particular steps while updating with new url. We donât want to lose any existing data sync between our External and Internal Jira environments.
In your Internal (Source) Jira, update the base URL from http to https.
In the External (Destination) Jira, since there is no way to update the remote instance URL from the UI, go to the DB Console and execute the following command, replacing the ânew urlâ and âold urlâ placeholders with their respective values:
UPDATE FROM "AO_08F1AF_INSTANCE" SET "URL" = 'new url', "ISSUE_TRACKER_URL"= 'new url' where "URL" = 'old url';
UPDATE FROM "AO_08F1AF_NODE_INFO" SET "BASE_URL" = 'new url', "ISSUE_TRACKER_URL"= 'new url' where "BASE_URL" = 'old url';
If you canât download it for some reason, there has to be someone that configured your jiraâs db structure that can tell you how they execute DB commands in your specific Jira infrastructure.