Jenkins

Jenkins:

 

官方网址:

http://jenkins-ci.org/

 

插件安装文档:

https://wiki.jenkins-ci.org/display/JENKINS/Plugins

插件安装下载:

http://updates.jenkins-ci.org/download/plugins/

 

启动:

下载后执行:$ java -jar jenkins.war,然后访问:http://localhost:8080

或将其部署在tomcat,访问http://localhost:8080/jenkins

 

 

如何安装插件官方解释:

How to install plugins

Using the interface

The simplest way is by going to your installation's management screen and clicking Manage Plugins (http://yourhost/jenkins/pluginManager/) and go to the Available tab. You'll find the plugin you'd like to install, select the checkbox, and then either attempt to Install without restart or Download now and install after restart. The web interface will then download *.hpi files from here. If you Install without restart the interface will show you progress and provide the results of the install.

Sometimes when you install, you will notice that the list of available plugins is empty. If that is the case, from Advanced tab on the Manage Plugins page, click on Check now (button available in the bottom right of the page) to forcefully check for new updates. Once that is done, you should see the list of plugins.

By hand

Download Site

Save the downloaded *.hpi/*.jpi file into the $JENKINS_HOME/plugins directory. You will then need to restart Jenkins (many containers let you do this without restarting the container)

Caveat: the names of the plugin directories on the download site are not always matching the name given to the plugin; common sense should apply.

 

 

 

 

插件解释:

publish-over-ssh/ > 允许 通过ssh 发布war等文件

你可能感兴趣的:(Jenkins)