主頁(yè) > 知識(shí)庫(kù) > Linux Shell腳本實(shí)現(xiàn)檢測(cè)tomcat

Linux Shell腳本實(shí)現(xiàn)檢測(cè)tomcat

熱門標(biāo)簽:安裝外呼系統(tǒng)費(fèi)用 衛(wèi)星地圖標(biāo)注地名 寧波智能外呼系統(tǒng)公司 申請(qǐng)公司400電話要注意什么 電銷機(jī)器人 劍魚 地圖標(biāo)注輻射圖案 曲阜400電話辦理 聯(lián)通電話機(jī)器人怎么接 奧維互動(dòng)地圖標(biāo)注參數(shù)

Linux Shell腳本檢測(cè)tomcat并自動(dòng)重啟

后臺(tái)運(yùn)行命令 sh xxx.sh
查看后臺(tái)任務(wù):jobs
召喚到前臺(tái):fg jobs編號(hào)

可以刪掉while循環(huán)的代碼放到crontab里面定時(shí)執(zhí)行,可以將腳本直接后臺(tái)運(yùn)行,

#!/bin/bash
while [ true ]
do
    url="https://www.jb51.net/";
    httpOK=`curl --connect-timeout 10 -m 60 --head --silent $url | awk 'NR==1{print $2}'`;
    if [ $httpOK == "200" ];then
        tomcat6=`ps -ef | grep tomcat | awk 'NR==1{print $1" "$2;}'`;
        user=`echo $tomcat6 | awk 'NR==1{print $1}'`;
        pid=`echo $tomcat6 | awk 'NR==1{print $2}'`;
        if [ $user != "tomcat" ]; then
            service tomcat6 start;
        else
            kill -9 $pid;sleep 5s;service tomcat6 start;service tomcat6 start;service tomcat6 status;
        fi;
    fi;
    sleep 5m;
done;

以上所述就是本文的全部?jī)?nèi)容了,希望大家能夠喜歡。

您可能感興趣的文章:
  • 自動(dòng)化下載并檢測(cè)ftp文件備份的shell腳本
  • 用來檢測(cè)輸入的選項(xiàng)$1是否在PATH中的shell腳本
  • shell腳本實(shí)現(xiàn)實(shí)時(shí)檢測(cè)文件變更
  • Shell腳本實(shí)現(xiàn)檢測(cè)Cygwin最快的鏡像站點(diǎn)
  • VBS腳本寫的Windows硬件檢測(cè)工具分享
  • Shell腳本實(shí)現(xiàn)檢測(cè)進(jìn)程是否正在運(yùn)行
  • PowerShell腳本實(shí)現(xiàn)檢測(cè)網(wǎng)絡(luò)內(nèi)主機(jī)類型
  • 腳本批量檢測(cè)網(wǎng)站是否存活

標(biāo)簽:遵義 大興安嶺 安康 大慶 上饒 三門峽 江西 仙桃

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Linux Shell腳本實(shí)現(xiàn)檢測(cè)tomcat》,本文關(guān)鍵詞  Linux,Shell,腳本,實(shí)現(xiàn),檢測(cè),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Linux Shell腳本實(shí)現(xiàn)檢測(cè)tomcat》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于Linux Shell腳本實(shí)現(xiàn)檢測(cè)tomcat的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章