通過jenkins與shell指令碼相結合,實現war包自動部署到多台伺服器上,jenkinswar
通過jenkins與shell指令碼相結合,實現war包自動部署到多台伺服器上
環境:
192.168.2.120 jenkins伺服器
192.168.2.117 tomcat伺服器
設定jenkins伺服器免密鑰登陸tomcat伺服器
117服:執行命令ssh-keygen -t rsa
120服:cd .ssh/;scp -p id_rsa.pub root@192.168.2.117:/root/.ssh/authorized_keys
或
scp -p ~/.ssh/id_rsa.pub root@192.168.2.117:/root/.ssh/authorized_keys
單擊helloworld再點擊配置按鈕進入配置介面
1)選擇execute shell
點擊儲存按鈕
指令碼:
cp /root/.jenkins/jobs/helloworld/workspace/target/edu.war /var/www/html/download/chown apache:apache /var/www/html/download/edu.warssh root@192.168.2.117 'bash -x -s' < /data/sh/auto_install.sh
此處由於直接通過網頁上下載war包,所以需要開啟httpd
service httpd start(yum install httpd apr apr-util)
在120服上添加指令碼名稱
mkdir -p /data/shcd /data/sh
添加指令碼內容:
#!/bin/bashTOMCAT_PID=`ps -ef| grep tomcat | grep -v grep |awk '{print $2}'`TOMCAT_DIR="/usr/local/tomcat"FILES="edu.war"DES_DIR="/usr/local/tomcat/webapps/ROOT"DES_URL="http://192.168.2.120/download"BAK_DIR="/data/backup/`date +%Y%m%d-%H%M`"[ -n "$TOMCAT_PID" ] && kill -9 $TOMCAT_PIDcd $DES_DIRrm -rf $FILESmkdir -p $BAK_DIR\cp -a $DES_DIR/* $BAK_DIR/rm -rf $DES_DIR/*wget -c $DES_URL/$FILES/usr/java/jdk1.8.0_151/bin/jar -xvf $FILEScd $TOMCAT_DIRrm -rf work. /etc/profileset -m;/bin/sh $TOMCAT_DIR/bin/startup.sh
在jenkins的web介面,進入job後,點擊立即構建按鈕
1)
2)進入構建頁面,點擊console output按鈕,可以看到相關輸出資訊
構建完成後,可以在120的web介面看到下載的檔案edu.war
在117上啟動tomcat,瀏覽器輸入網址,可以看到如下部署好的web頁面
至此自動部署web完成
如果要部署多個,可以在ip.txt設定多個ip,然後通過for迴圈取部署即可
添加個119伺服器,並配置好tomcat,然後設定120服免密鑰登陸119服
此時有兩個tomcat伺服器,分別為117服和119服
在工程的配置介面,修改指令碼為
cp /root/.jenkins/jobs/helloworld/workspace/target/edu.war /var/www/html/download/chown apache:apache /var/www/html/download/edu.warfor I in `cat /data/sh/ip.txt`;do ssh root@${I} 'bash -x -s' < /data/sh/auto_install.sh ;done
在/data/sh目錄下手動建立文本ip.txt,裡面填寫上要自動部署web的ip地址
[root@localhost sh]# cat /data/sh/ip.txt 192.168.2.117192.168.2.119
然後點擊立即構建按鈕,此時就可以在117服和119服上看到自動部署的web介面
1)117服
2)119服
如果tomcat伺服器數量較多,可以藉助ansible工具與jenkins的結合來實現批量部署
備忘:
1) tomcat伺服器要安裝jdk
2) 在tomcat服上手動去下載,提示許可權問題
yum安裝的apache,預設的執行使用者為apache,而指令碼裡cp的檔案edu.war的所有者和所屬組均為root,所以提示沒有許可權
3) tomcat伺服器的jdk路徑要統一
4) 預設檔案路徑為/root/.jenkins/jobs/helloworld/workspace/target
5) 這裡結合了httpd來擷取下載的路徑,實際上,可以在項目helloworld的配置介面,設定文檔儲存路徑
A. 點擊增加構建後操作步驟按鈕,設定路徑
B. 點擊立即構建後,war包就會存放在該路徑下,url為http://192.168.2.120:8080/job/helloworld/lastSuccessfulBuild/artifact/target/edu.war
C. 通過url可以直接擷取war包,
比如
wget http://192.168.2.120:8080/job/helloworld/lastSuccessfulBuild/artifact/target/edu.war
對應的伺服器路徑為/root/.jenkins/jobs/helloworld/lastSuccessful/archive/target
auto_install.sh
#!/bin/bashTOMCAT_PID=`ps -ef| grep tomcat | grep -v grep |awk '{print $2}'`FILENAME="edu.war"TOMCAT_DIR="/usr/local/tomcat"DES_DIR="/usr/local/tomcat/webapps/ROOT"DES_URL="http://192.168.2.120:8080/job/helloworld/lastSuccessfulBuild/artifact/target"BAK_DIR="/data/backup/`date +%Y%m%d-%H%M`"[ -n "$TOMCAT_PID" ] && kill -9 $TOMCAT_PIDcd $DES_DIRrm -rf $FILENAMEmkdir -p $BAK_DIR\cp -a $DES_DIR/* $BAK_DIR/rm -rf $DES_DIR/*wget -c $DES_URL/$FILENAME/usr/java/jdk1.8.0_151/bin/jar -xvf $FILENAMEcd $TOMCAT_DIRrm -rf work. /etc/profileset -m;/bin/sh $TOMCAT_DIR/bin/startup.sh