I have a few plugins in my Jenkins installation which I no longer need. I've already disabled the plugins (and my build still work), and I'd like to remove the plugins completely. What is the right process for completely removing a Jenkins (Hudson) plugin?

link|improve this question

feedback

4 Answers

up vote 30 down vote accepted

After stopping Hudson/Jenkins, go to your HUDSON_HOME/plugins directory and remove both the .hpi file and the folder with the same name. So, if you were going to remove the CVS plugin, you would remove both the cvs.hpi file and the cvs directory.

After that, restart Hudson/Jenkins and the plugin won't be there anymore.

I actually removed that CVS plugin earlier today when I upgraded to Jenkins, and I wasn't able to find any other official way to remove a plugin other than by hand.

link|improve this answer
Yes, no way to uninstall it from the GUI. See issues.hudson-ci.org/browse/HUDSON-3070 – pihentagy Mar 10 '11 at 10:40
2  
@Mark Today I removed a bunch of plugins but the cvs plugin keeps getting re-created. Any ideas how to remove this permanently? – Besi Sep 2 '11 at 8:01
2  
No matter what I do, all deleted plugins files are created again when I start Jenkins. – Željko Filipin Oct 26 '11 at 14:15
This method does not work when running Jenkins on Win Svr 2008 R2. When stopping, deleting the files, and then restarting the service, the files are then recreated in the file system automatically. – Jason Feb 23 at 3:06
feedback

Deleting the <plugin>.hpi file and corresponding <plugin>-plugin directory will effectively remove the plugin.

However, if you have configured parameters that belong to the plugin within your jobs your Hudson or tomcat logs may contain *CannotResolveClassException: hudson.plugins ... * exceptions because it attempts to load the plugin. This can result in build failures even if build is successful.

To fix that,

  • go to the job configuration and save it again. This should get rid of the plugin reference
  • if not, go into the hudson home jobs directory and open the config.xml found under the folder named after the job and remove the reference to the plugin
  • restart hudson
link|improve this answer
feedback

http://wiki.hudson-ci.org/display/HUDSON/Plugins explains that some core plugins ("Tier 1" plugins, as they are called) are shipped with Hudson itself, and I assume cannot be deleted therefore.

link|improve this answer
feedback

You can disable it using the Jenkins » Plugin Manager. Go to Installed tab and untick the plugins you want to uninstall and restart Jenkins. Though it does not unintall, at least keeps it away from appearing from configuration pages..

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.