溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

CentOS下停止Tomcat運行腳本代碼怎么寫

發(fā)布時間:2022-04-08 17:24:42 來源:億速云 閱讀:208 作者:iii 欄目:編程語言

本篇內(nèi)容主要講解“CentOS下停止Tomcat運行腳本代碼怎么寫”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學(xué)習(xí)“CentOS下停止Tomcat運行腳本代碼怎么寫”吧!

代碼如下:

#!/bin/sh
#
# firstly find the process of the tomcat....
tomcat_process_str=`ps aux | grep 'java.*tomcat' | grep -v grep`
process_array=(${tomcat_process_str// / })
tomcat_process_id=${process_array[1]}
echo $tomcat_process_id
#
# secondly send stop tomcat to see if we can kill it
stoptomcat
sleep 12
#
# last we'll use kill tomcat process in a looking up loop
for ((a=1;a<=10;a++))
do
 check_str_length=0
 tomcat_process_check_str=`ps aux | grep 'java.*tomcat' | grep -v grep`
 check_str_length=${#tomcat_process_check_str}
# 傳遞到腳本的參數(shù)個數(shù);
 if [ $check_str_length != 0 ]
 then
  kill $tomcat_process_id
  sleep 5
  echo try to kill tomcat once more...
 else
  echo tomcat is already killed
  break
 fi
done
#使用兩次grep來去除grep自身進(jìn)程對于查找結(jié)果的干擾是非常有技巧的

到此,相信大家對“CentOS下停止Tomcat運行腳本代碼怎么寫”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI