定时重启Tomcat与MySQL批处理命令
最近服务器上服务老是死。好多网站打不开。必须重启下服务,下面就在网上找了个批处理来解决这个问题。
@echo off
net stop tomcat
ping 127.0.0.1 -n 20
net start tomcat
net stop mysql
ping 127.0.0.1 -n 20
net start mysql
以上就是批处理里的内容。停止tomcat服务,延迟20秒 启动tomcat服务 下面的mysql也是一样。把上面的内容保存成.bat格式的批处理。然后用WIN自带的任务计划加任务计划中,选择一个合适的时间执行就行。
相关推荐
smalllove 2020-11-03
wuhuaguwuhuaguo 2020-09-15
guying 2020-08-16
wqcong 2020-06-14
chenzhiwei 2020-06-13
talkingDB 2020-05-05
83206837 2020-05-01
Yasin 2020-03-03
Amzaing00 2020-01-06
GechangLiu 2020-01-05
shenghua 2013-03-27
文山羊 2019-12-16
乾坤一碼農 2019-12-11
dongxurr 2019-12-09
bluestartlxp 2019-11-27
86427217 2015-04-18
thankinglove 2015-09-06
圆圆的世界CSDN 2019-11-07
happygongzhuo 2008-09-04