windows下bat curl实现tomcat进程守护
朋友公司的 tomcat运行在windows平台下,其提到tomcat不是很稳定,老是挂,有没有什么好的办法。其中给他的建议里有一条,让其开一个tomcat的守护进程。由于windows下不像linux(Linux平台下各种命令、各种语法、各种顺手),win平台下bat感觉既弱又难理解。不过这里还是找了下之前写过的tomcat进程守护脚本,改了下写了一个。
同一个思种, 获取某个URL的状态码,对比HTTP状态码是否为200,如果不是200,将该主机的某个特定tomcat进行重启(针对单台主机上有多个tomcat的情况)。获取状态码,能过纯win平台实现的方法有两种:其一是增加curl.exe ,另一种方法是通过VBS实现 。
一、curl.exe实现
bat代码如下:
1@echo off
2:loop
3set "httpcode="
4cd /d c:\curl
5for /f "delims=" %%r in ('curl.exe -sL -w "%%{http_code}" "http://127.0.0.1:8080/" -o nul') do (
6 set httpcode=%%r
7)
8echo %httpcode%
9if not "%httpcode%"=="200 " (
10taskkill /F /FI "WINDOWTITLE eq tomcat_8080"
11ping -n 3 127.0.0.1>nul
12set CATALINA_HOME=C:\tomcat
13set EXECUTABLE=%CATALINA_HOME%\bin\catalina.bat
14rem call "%EXECUTABLE%" start && exit
15call "%EXECUTABLE%" start
16) else (
17echo "the tomcat run is ok!'
18)
19ping -n 30 127.0.0.1>nul
20goto loop
这里的等待是通过ping等待实现的,现使用sleep,也需要调用VBS脚本实现,具体可以查看windows下的计时等待 。获取到的httpcode变量这里需要注意,比如获取的值是200,其后面是有空格的,所以条件写的时候后面的200也要有空格 ,当然也可以curl |findstr 的方式判读是否存在200去做。
taskkill 这里杀进程时,会匹配窗口标题,这是在一台主机启动多个tomcat 的情况下,可以区分对待。对不同的tomat指定不同标题的方法可以参看 修改Tomcat窗口标题 。
二、VBS实现
这里并没有给出一个完整的功能实现的代码,因为vbs和bat写起来太蛋疼了,这里只给一个示例代码:
1'Get HttpCode
2set oHttp=CreateObject("MSXML2.XMLHTTP")
3oHttp.Open "GET","https://blog.361way.com/",False
4oHttp.Send
5If oHttp.Status = 200 Then
6 MsgBox("Http Status Code is 200 OK.")
7Else
8 MsgBox("正常。")
9End If
10'WScript.Echo oHttp.Status
11set oHTTP=Nothing
BAT里如果调用vbs脚本,也可以通过cscript 命令进行调用。
三、其他
针对多个URL,通过BAT取状态和连接时间的,还有一段代码非常不错,内容如下:
1@echo off
2 setlocal enableextensions disabledelayedexpansion
3 rem Just to test - Generate a file with URLs
4 > ".\urls.txt" (
5 echo http://superuser.com
6 echo https://blog.361way.com
7 echo http://www.baidu.com
8 )
9 > ".\testResults.txt" (
10 for /f "useback delims=" %%u in (".\urls.txt") do (
11 set "statusCode="
12 echo([%%u]
13 cd /d c:\curl\
14 for /f "tokens=1,2 delims=#" %%a in ('
15 curl -w "##%%{time_connect}##." -I -s --url "%%~u"
16 ^| findstr /l /b /c:"HTTP/" /c:"##"
17 ') do if "%%b"=="." (
18 setlocal enabledelayedexpansion
19 echo( !statusCode! - %%a
20 endlocal
21 ) else (
22 set "statusCode=%%a"
23 )
24 )
25 )
虽然看起来比较精妙,但是还是比较难理解,这个是根据国外某站上的一段代码改的。
没有营养的内容先到这里吧,本篇只是为了做一个对比,后续准备写一个python实现的windows守护进程 。再通过pyexe生成exe文件,感觉比bat好不少。
捐赠本站(Donate)
如您感觉文章有用,可扫码捐赠本站!(If the article useful, you can scan the QR code to donate))
- Author: shisekong
- Link: https://blog.361way.com/win-curl-tomcat-daemon/5233.html
- License: This work is under a 知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议. Kindly fulfill the requirements of the aforementioned License when adapting or creating a derivative of this work.