nginx 管理工具

2021-07-31 06:49:35 字數 1909 閱讀 3049

@echo off

rem 當前bat的作用

echo ***************===begin********************====

cls

set nginx_path=d:

set nginx_dir=d:\program files\nginx-1.13.0

set tomcat_dir=d:\apache-tomcat-6.0.32\bin\

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. [5] 啟動tomcat

echo.

echo.請輸入選擇專案的序號:

set /p id=

if "%id%"=="1" goto start

if "%id%"=="2" goto stop

if "%id%"=="3" goto restart

if "%id%"=="4" exit

if "%id%"=="5" goto tomcat

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

: tomcat

call :starttomcat

goto menu

: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

:starttomcat

echo.

echo.啟動tomcat......

if not exist "%tomcat_dir%startup.bat" echo "%tomcat_dir%startup.bat"不存在

%tomcat_dir%

cd "%tomcat_dir%"

if exist "%tomcat_dir%startup.bat" (

echo "start '' startup.bat"

call startup.bat

)echo.ok

goto :eof

IT專案管理工具

一 完善的專案管理工具,需要具有如下的管理模組 1.需求管理 專案的需求變更,跟蹤,控制 2.資源管理 專案的可利用的資源 人力,物力,財力 3.計畫管理 包括成員管理和許可權分配,日程排定,工作時間管理,里程碑設定 4.進度管理 日曆,工作流,專案路線圖和gantt圖 5.測試管理 專案軟體缺陷b...

SQLCE管理工具

如果你是做dotnet開發,同時在找sqlce桌面 嵌入式資料庫的管理工具,那麼database.net。另外,既然你是做dotnet開發,又選擇了sqlce資料庫,那麼你肯定對比過sqlite資料庫,他們的對比,我在其他文章寫過 個人經驗,不是很全面,僅供參考 如果要在sqlite和sqlce中間...

mysql管理工具

innochecksum 輸出innodb檔案的校驗碼,這個工具讀取innodb表空間檔案,計算每個頁的校驗值,跟儲存的進行比較,報告損壞的頁的資訊,主要是加快驗證掉電後貨是拷貝後表空間檔案的一致性,這個工具在5.6.16版本之前只支援2gb的檔案。該工具不能用在服務已經開啟的表空間檔案上,這種情況...