Reputation: 3117
I had to skip past the default plugin install page to configure proxy and to fix an issue. But now I need to install default plugins. Is there a way restart the default plugin installation page without having to delete Jenkins container? Or is there a list of default plugin names somewhere where I can manually install.
Upvotes: 1
Views: 6937
Reputation: 4807
We can get the suggested plugin from here
The suggested plugins are
ant
antisamy-markup-formatter
build-timeout
cloudbees-folder
credentials-binding
email-ext
git
github-branch-source
gradle
ldap
mailer
matrix-auth
pam-auth
pipeline-github-lib
pipeline-stage-view
ssh-slaves
timestamper
workflow-aggregator
ws-cleanup
Use the below command to get it
curl https://raw.githubusercontent.com/jenkinsci/jenkins/master/core/src/main/resources/jenkins/install/platform-plugins.json | jq -r -c '.[].plugins[] | select(.suggested==true) | .name' | sort
Expanded answer from Garth Smith Comment.
Upvotes: 2
Reputation: 3541
Here's a list with all of the default plugins, suggested for Jenkins version 2.60.3:
seems like, better to re-install jenkins
Upvotes: 3