美文网首页
Nginx启动关闭脚本(bat文件)

Nginx启动关闭脚本(bat文件)

作者: 竹杠敲头 | 来源:发表于2019-02-21 15:08 被阅读0次

    打开

    @echo off
    set nginx_path=D:\nginx-1.12.2
    echo nginxpath: %nginx_path%
    cd %nginx_path%
    echo "nginx is starting on port 80"
    start nginx
    cd %~dp0
    

    关闭

    @echo off
    set nginx_path=D:\nginx-1.12.2
    echo nginxpath: %nginx_path%
    cd %nginx_path%
    tasklist | findstr /i "nginx.exe"  
    echo "nginx is running, stopping..." 
    rem nginx -s stop 
    TASKKILL /F /IM nginx.exe /T  
    echo "stop ok" 
    cd %~dp0
    

    如果启动文件无法启动时,将文件放在Nginx目录下,在桌面创建快捷方式就可以了,原因目前还不知道为什么,懂的老哥可以评论回复一哈子

    相关文章

      网友评论

          本文标题:Nginx启动关闭脚本(bat文件)

          本文链接:https://www.haomeiwen.com/subject/lngryqtx.html