-----------------------------------------------------------------html
原創博文,未經做者容許禁止轉載。java
博主:疲憊的豆豆ubuntu
連接:http://www.cnblogs.com/dzblog/p/6962000.htmlthis
----------------------------------------------------------------spa
更新:rest
2017-06-19:因我的須要替換成最新的weekly版本,確保操做步驟沒問題。code
接手一個前人維護的Jenkins系統,使用的是ver2.9的版本,也就是weekly的版本,比較老舊,並且擔憂哪天會不支持,決定替換成LTS版本,以絕後患。orm
其實升級方式有不少,由於不知道前人是如何安裝的,採起最穩妥的替換war包的方式升級。htm
通常狀況下,war的安裝路徑在/usr/share/jenkins目錄下。blog
不過也有部分人不喜歡安裝在這裏,能夠經過系統管理(System management)--> 系統信息(System Info)查找.war的文件,以下圖:
先列出官網地址:https://jenkins.io/download/,可能會有GFW的緣由致使被屏蔽。
咱們可使用以下幾個連接去下載:
好比說我升級的是最新的LTS版本:2.46.3,路徑:Index of /jenkins/war-stable-rc/2.46.3/
地址:https://mirrors.tuna.tsinghua.edu.cn/jenkins/war-stable-rc/2.46.3/jenkins.war
ubuntu系統可使用wget下載
wget https://mirrors.tuna.tsinghua.edu.cn/jenkins/war-stable-rc/2.46.3/jenkins.war
1. 中止Jenkins服務(記得備份原來的jenkins.war,以防萬一)
http://jenkinsIP:port/exit
2. 替換最新的war包,並啓動jenkins(通常也就java -jar jenkins.war便可)
參考:
https://stackoverflow.com/questions/11062335/update-jenkins-from-a-war-file的這句話:
You can overwrite the existing jenkins.war file with the new one and then restart Jenkins.
This file is usually located in /usr/share/jenkins.
If this is not the case for your system, in Manage Jenkins -> System Information, it will display the path to the .war file under executable-war.
END