高尔夫球杆 英文:数据库服务启动和停止的bat批处理

来源:百度文库 编辑:九乡新闻网 时间:2024/04/28 00:40:00
@echo offecho start /min open a small window :logmenucolor 3Brem elect menuecho -----------------------------------------echo *****************************************echo #---------------------------------------#echo #    services dos by 秋天的枫树叶       #echo #---------------------------------------#echo #              service menu             #echo.echo [1]startup mysql5    [2]shutdown mysql5echo [3]startup DB2       [4]shutdown DB2echo other key to escape.echo #---------------------------------------#set /P CHS= Choose Please:echo.
if /I "%CHS%"=="1" (goto chone)if /I "%CHS%"=="2" (goto chtwo)if /I "%CHS%"=="3" (goto chthree)if /I "%CHS%"=="4" (goto chfour)goto esc
:chonerem startup mysql5@net start MySQL5pause clsgoto logmenu
:chtworem shutdown mysql5@net stop MySQL5pause clsgoto logmenu
:chthreerem startup DB2@net start "DB2 管理服务(DB2COPY1)"pause clsgoto logmenu
:chfourrem shutdown DB2@net stop "DB2 管理服务(DB2COPY1)"pause clsgoto logmenu
:escrem escpauseexit