2017-06-15 95 views
0

我已經在Ubuntu 14.04操作系統上下載並安裝了Jenkins。 Jenkins目前作爲服務運行。如何卸載在Ubuntu上從jenkins.war安裝的Jenkins 14.04

一旦Jenkins通過Jenkins.war文件安裝在Ubuntu 14.04上,它如何被卸載?

我試圖做一些備份測試,似乎無法找到答案的任何地方。我能找到的唯一指示是uninstall the Jenkins package的說明。當我運行任何類似的命令卸載詹金斯包,我收到消息:

Package 'jenkins' is not installed, so not removed 

Package 'jenkins-executable-war' is not installed, so not removed 

在此先感謝您的幫助!

回答

0

我們需要先停止jenkins。

sudo service jenkins stop

然後嘗試 sudo apt-get remove --purge jenkins

如果問題仍然存在,請嘗試使用這些說明手動刪除它。 https://stackoverflow.com/a/11621186/3086531

+0

此命令在將jenkins作爲服務停止之後產生了與上面概述的結果相同的結果。詹金斯通過jenkins.war文件安裝,而不是通過包裝。 – J0991