linux下配置jenkins

準備工具

  • tomcat web服務器
  • jenkins.war包
默認你已配置好jdk,若是不知道jdk配置請自行問度娘

下載工具

  1. 下載tomcat
  • 在shell下執行 cd /opt切換到opt目錄下
  • 執行wget https://mirrors.tuna.tsinghua.edu.cn/apache/tomcat/tomcat-8/v8.5.54/bin/apache-tomcat-8.5.54.tar.gz 下載tomcat
  • 解壓 tar -zxvf apache-tomcat-8.5.54.tar.gz
  • 修改成名稱爲tomcatmv apache-tomcat-8.5.54/ tomcat
  1. 下載jenkins
  • 在/opt 目錄下執行 wget https://mirrors.tuna.tsinghua.edu.cn/jenkins/war/2.233/jenkins.war 下載jenkins
  1. 部署jenkins並啓動(仍是在/opt目錄下)
  • 執行mv jenkins.war ./tomcat/webapps 把jenkins移動到tomcat裏面
  • 啓動tomcat/opt/tomcat/bin/startup.sh
  • 關閉tomcat(通常不用改操做)/opt/tomcat/bin/shutdown.sh
  • 清除防火牆規則(生產環境切勿用此操做,能夠把8080tcp端口放行便可)iptables -F
  • 在瀏覽器輸入你的ip:8080/jenkins便可訪問jenkins
  • 複製瀏覽器的路徑在shell下cat改路徑獲得jenkins的初始密碼
懶人必備(以上步驟經過如下3個步驟便可實現)
一:下載shell腳本
wget https://gitee.com/ze-yan/zeyan_coding/raw/master/deploy_jenkins.sh
二:給權限
chmod +x deploy_jenkins.sh
三:執行shell腳本
./deploy_jenkins.sh

更換jenkins插件爲清華源(可選操做)

jenkins源路徑更換步驟

  1. jenkins——插件管理——高級——升級站點
  2. url替換爲清華源https://mirrors.tuna.tsinghua.edu.cn/jenkins/updates/update-center.json
  3. 點擊提交
  4. 編輯jenkins服務器的/root/.jenkins/updates/default.json文件
    替換http://www.google.com爲https://www.baidu.com/
    替換http://updates.jenkins-ci.org/download/爲https://mirrors.tuna.tsinghua.edu.cn/jenkins/
  • 快速方法
  1. cd /root/.jenkins/updates
  2. sed -i 's/http:\/\/updates.jenkins-ci.org\/download/https:\/\/mirrors.tuna.tsinghua.edu.cn\/jenkins/g' default.json && sed -i 's/http:\/\/www.google.com/https:\/\/www.baidu.com/g' default.json
  • 重啓jenkins,YourJenkinsServerUrl/restart
  1. 若是上面快捷命令不行,就用vi參照第4步來手動改

轉載請註明 子木仄言 http://www.javashuo.com/article/p-uooucawz-ng.html

相關文章
相關標籤/搜索