I have a Jira 4.1.2 server instance in EC2 that I want to clone to test manual upgrade and later clone a second time to have an easy recovery path in case the actual upgrade goes wrong.
I know I can change to a developer license for my test instance, but will the startup of a Jira instance with the same Server ID and license have any effect on the already running one?
If so, how do I change the offending property (e.g. Server ID or License) on the cloned instance without actually starting it?
select id from propertystring where propertyvalue = 'your cloned server id'then just update the found table row with your developer server id using
update propertystring = 'developer server id' where id = found id in prev. StatementThere are some more important hints to follow before you start your cloned instance:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Dieter!
Your reply left open if running with the same license would cause any problems. However changing the Server ID with
update propertystring set propertyvalue = '<ID taken from plain installation on the same machine>' where id = <Found with your statement>;
and then immediately changing the license from within Jira worked fine.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.