Hi
We are installing Jira Software on a new server
After restoring from a backup file of the old server, we changed the base URL to match the new server.
Jira Software works fine.
But I can not access Portfolio from the Jira software menu: the base URL displayed in the browser is still the old base URL.
How can I change the base URL for the apps that I have: Portfolio and Tempo TimeSheet?
Thanks
Nghia
Hi Earl
Thanks. I tried but no success so far :-(
Any other ideas?
Thx
Nghia
Hi @nph ,
Sorry for the delayed reply, but looking at this the menue options for the applications should be using the same base URL as the main application, so navigating through Jira should have the same behavior as navigating through installed apps.
I am wondering if there is something in your DNS or Proxy settings doing a URL redirect based on the full application menu URL options, possibly a load balancer that is sending some of the requests to the new server and some to the old one. I would recomend reaching out to your network team to see if they can check out the settings and see if there are any redirects set up for the Jira Server.
Also something you could do to verify nothing is copying over URL wise in the restore is that you could take a site backup of the site, extract the zip and check the entities.xml file for any mention of the old URL. If you find anything you could do a manual search and replace of all URL elements in the file, and then re-import to scrub out any occurrence of the old url with the new one.
To do this you could use the following format on a linux/unix based OS:
sed -r -e 's/oldvalue/newvalue/g' <export-file-name>
So as an EXE if you wanted to change the base url from "http://mycompany.com" to "http://mynewcompanyname.com" You would make a backup and extract the zip file it contains Two files, entities.xml and activeobjects.xml, you would use the following command to update the entities.xml where the data portion lives, and the active objects is the database mappings, no update to the second file:
sed -r -e 's/mycompany.com/mynewcompanyname.com/g' entities.xml
Once the date is updated you re zip the two files, and use the new zip to restore the site.
Regards,
Earl