在windows 上自動重啟 tomcat 的方法

來源:互聯網
上載者:User

標籤:rem   top   for   tom   got   goto   pmp   pos   exe   

在windows 上自動重啟 tomcat 的方法

實現思路:

Windows 上監控tomcat 進程並且自動重啟的指令碼

一類是 定時重啟 tomcat

一類是 監控並重啟

寫一個守護tomcat進程 的指令碼,間隔指定時間去訪問 某個URL,對比HTTP 狀態代碼是否為 200,如果不是,則重啟tomcat。

實現方法:

下載一個 windows 對應版本的 curl.exe ,將檔案放入  C:\Windows\System32 目錄下

寫一個 bat 指令碼

@echo offset num=0:loopset "httpcode="rem cd /d c:\curlfor /f "delims=" %%r in (‘curl.exe -sL -w "%%{http_code}" "http://127.0.0.1:8680/bpmp" -o nul‘) do (  set httpcode=%%r)echo %httpcode%ping -n 30 127.0.0.1 >nulif not "%httpcode%" == "200"  goto countecho tomcat is okgoto loop:countset /a num+=1echo %num%if "%num%"=="5" goto restartgoto loop:restartnet stop tomcat8ping -n 10 127.0.0.1>nulnet start tomcat8set num=0goto loop

 

在windows 上自動重啟 tomcat 的方法

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.