Reputation: 61
I have installed Jenkins in my Ubuntu OS and now I want to install its few plugns using command line. I have got this command :- java -jar jenkins-cli.jar -s http://127.0.0.1:8080/ install-plugin from this url :- How to install jenkins plugins from command line?
Problem :- 1) I don't know what are the plugins name there for Jenkins and so please provide me few basic jenkins plugins name to put in the above command or any other command to install using CLI.
Upvotes: 1
Views: 3010
Reputation: 148
java -jar /path/to/jenkins-cli.jar -s http://127.0.0.1:2206/ install-plugin github-api --username admin --password password
Upvotes: 2