Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×So, each time I do a JIRA update, multiple language packs are installed. I uninstall them and then when I do the next update, they'll all back. How do I resolved that?
JIRA Server 7.10.2
You may disable these language packs instead of uninstalling them.
So, I disabled the language packs, and this past weekend performed an update. Now my "Lasted Update report" reflects:
User add-ons disabled: 14
Some of your user add-ons have failed to start. They may not be compatible with this version of Jira.
We don't need the Chinese, Slovakian, Romanian, etc language packs, so why is JIRA complaining about them?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is indeed very annoying. I have the same issue. It would be good to be able to permanently delete these.
Also it would be good to be able to update the plugins after an update through a rest api call. Although I can get a list of the installed plugins via the rest api, I still have not found out how to update them via curl and rest api.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I know it has been a long time since this post, but maybe this still can help someone. It's about enabling and disabling plugins via the rest api. I run this CURL sentence on Windows with Jira 7.9 installed and it works fine:
curl.exe -u <user>:<password> -D- -X PUT --data "{\"enabled\": <status>}" -H "Content-Type: application/vnd.atl.plugins.plugin+json" --insecure https://<your_jira_url> /rest/plugins/1.0/<app_key>-key
Where:
I found this after installing "Atlassian REST API Browser" plugin on my test instance. I read about this add-on somewhere in the forums or KB, but I don't remembre exactly where. I'm sorry, I've not been able to retrieve the source to put it here.
Hope it helps you!
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.