The DNS rules in our lab have recently changed, so instead of referencing http://server:8080/jira, I now must reference http://server.region.country.company.com:8080/jira. This has broken our application links. I have a lot of projects setup between JIRA and Stash and I don't want to upset the commit, branch, and pull request information that makes the integration so awesome.
I know you can't edit this in the UI, and i imagine this has to be in Stash's database somewhere. The schema is different than JIRA so the instructions found on https://answers.atlassian.com/questions/92503 don't apply.
I'm poking through the database to find it; If anyone knows off the top of their head, that would be great!
Thanks!
I found it. It's in Stash's plugin_setting table.
Use the following query to find the correct row, and remember the ID of it:
SELECT id, key_value FROM plugin_setting WHERE key_value LIKE '%<your old server URL>%';
Then use update to change it:
UPDATE plugin_setting SET key_value = '<Your NEW Server URL>' WHERE id = <ID from query above>;
Reboot stash for settings to take effect.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.