… YES, we can :D. Let me time explain and describe how to.

All the informations you need are ….

… stored in BANDANA table. If we use this query:

select BANDANAVALUE
from BANDANA
where BANDANACONTEXT = '_GLOBAL'
and BANDANAKEY = 'atlassian.confluence.settings';

we obtain the XML with all information, URL Base included :D. So if we wanna change this information on database, well, just update the record in BANDATA table with the desired URL. This could be useful if we cannot use web site or we can access to database.

For more information, take a look of this Atlassian Community post.

Wooow… and for Jira? same way?

Yes, more or less, we can use a similar way for change URL Base. Informations are stored in propertyentry table. So just use this query:

select propertyvalue from propertyentry PE
join propertystring PS on PE.id=PS.id
where PE.property_key = 'jira.baseurl';

and we can see the URL Base.

For more information, take a look of this Atlassian Community post.

By Artigiano Del Software

Posted by:artigianodelsoftware

One thought on “Can we change URL Base of Confluence Server?

Leave a comment