最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
Windows系统Tomcat重启批处理脚本
时间:2022-06-30 17:55:45 编辑:袖梨 来源:一聚教程网
Tomcat重启脚本,送给有需要的JSP环境运维同行们~
运行环境:XP/windows 2003测试通过,其他环境由于手头上条件限制未测试;
脚本功能:在常规调用tomcat自带的关闭/重启脚本中加入假死判断,若出现假死则予以强行Kill掉相关JAVA进程;
脚本特点:可在tomcat/Jboss/apache混合平台使用,针对性的只重启tomcat相关进程;
注意事项:就是注意tomcat环境变量是否正确即可。
@echo off
title Tomcat重?⒔疟?br />
call "%tomcat_home%binshutdown.bat"
ping -n 6 127.1 >nul
wmic process where name="java.exe" get processid,commandline |findstr /i "tomcat" >#
setlocal enabledelayedexpansion
for /f "delims=*" %%i in (#) do (
set var=%%i
set var=!var:start =#!
for /f "tokens=2 delims=#" %%a in ("!var!") do (
set tomcatpid=%%a
)
)
del # >nul
if defined tomcatpid taskkill /pid !tomcatpid!
ping -n 3 127.1 >nul
call "%tomcat_home%binstartup.bat"
exit
相关文章
- 哈利波特魔法觉醒拼图寻宝格兰芬多塔楼线索位置攻略 08-01
- 金铲铲之战中秋挑战活动怎么玩?中秋双人大作战玩法介绍 08-01
- 《魔法少女小圆MagiaExedra》月卡可获取奖励一览 08-01
- 《地下城堡4》军团战通关攻略 08-01
- 《地下城堡4》惊悸荒野小屋解密攻略 08-01
- 币圈三大主流交易所详解 币安 Coinbase 火币对比分析 08-01