Hi,
We have problems because after activating a plugin (Subversion plugin ALM) it has stated to indexing repositories and JIRA interface keeps locked for users. Thus we can't access as administrator to add-on management option to deactivate it.
It's possible to deactivate an add-on from command line?
Thanks
Begoña
You can shut down JIRA, then remove the add-on from the <JIRA HOME>/plugins/installed-plugins folder.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
A new, better solution is to disable via the command line as outlined in this article. This is particularly useful when restoring a dev instance from a prod backup.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Another method, more complex:
(!) Always backup your data before performing any modification to the database. If possible, try your modifications on a test server.
Execute SQL query and find your plugin key
SELECT * FROM pluginversion where pluginname like '%text%';
Execute SQL query and disable plugin:
INSERT into pluginstate (pluginkey, pluginenabled) VALUES ('<pluginkey from query above>','false');
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
I can't locate table pluginversion in Confluence 5.8.4 as well as the latest v6.2.3. Has the approach changed or the table names are changed.
Thanks
Suyash
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Atlassian Government Cloud has achieved FedRAMP Authorization at the Moderate level! Join our webinar to learn how you can accelerate mission success and move work forward faster in cloud, all while ensuring your critical data is secure.
Register NowOnline 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.