windows 下 nginx的启动以及关闭(bat脚本)

windows 下 nginx的启动以及关闭(bat脚本),第1张

windows 下 nginx的启动以及关闭(bat脚本

参考:
https://www.cnblogs.com/youshilife/p/15227208.html
https://www.cnblogs.com/anz130/p/6609933.html
https://jingyan.baidu.com/article/4b07be3c907e6f48b280f36d.html

:@echo off
:if "%1" == "h" goto begin
: mshta vbscript:createobject("wscript.shell").run("%~nx0 h",0)(window.close)&&exit 
:begin 

cd nginx-1.21.0

@REM 关闭nginx
nginx.exe -s stop
@REM 强力删除
taskkill /F /IM nginx.exe > nul

@REM 延时1秒
TIMEOUT /T 1

@REM 重新配置文件
nginx.exe -s reload

@REM 重启nginx
nginx.exe -s stop
start nginx

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5680971.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存