分享Nginx在Windows下的管理命令(bat檔案)

來源:互聯網
上載者:User

標籤:c   a   tar   color   檔案   art   

話不多說,複製下面的內容,存成bat檔案,放到nginx目錄下。

 

====================================================
@echo off
rem 當前bat的作用

echo ==================begin========================

cls
SET NGINX_PATH=D:
SET NGINX_DIR=D:\Tools\nginx-1.5.12\
color 0a
TITLE Nginx 管理程式控制台

CLS

ECHO.
ECHO. * Nginx 管理程式 *
ECHO. * 建立2013-10-15 *
ECHO.

:MENU

ECHO. * nginx 進程list *
tasklist|findstr /i "nginx.exe"

ECHO.
ECHO. [1] 啟動Nginx
ECHO. [2] 關閉Nginx
ECHO. [3] 重啟Nginx
ECHO. [4] 退 出
ECHO.

ECHO.請輸入選擇項目的序號:
set /p ID=
IF "%id%"=="1" GOTO start
IF "%id%"=="2" GOTO stop
IF "%id%"=="3" GOTO restart
IF "%id%"=="4" EXIT
PAUSE

:start
call :startNginx
GOTO MENU

:stop
call :shutdownNginx
GOTO MENU

:restart
call :shutdownNginx
call :startNginx
GOTO MENU

:shutdownNginx
ECHO.
ECHO.關閉Nginx......
taskkill /F /IM nginx.exe > nul
ECHO.OK,關閉所有nginx 進程
goto :eof

:startNginx
ECHO.
ECHO.啟動Nginx......
IF NOT EXIST "%NGINX_DIR%nginx.exe" ECHO "%NGINX_DIR%nginx.exe"不存在

%NGINX_PATH%

cd "%NGINX_DIR%"

IF EXIST "%NGINX_DIR%nginx.exe" (
echo "start ‘‘ nginx.exe"
start "" nginx.exe
)
ECHO.OK
goto :eof

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.