1. Adjust the directory hierarchy
[msb/apigateway.git] / msb-core / redis-ext / src / assembly / resources / redis / run.bat
1 @REM\r
2 @REM Copyright (C) 2016 ZTE, Inc. and others. All rights reserved. (ZTE)\r
3 @REM\r
4 @REM Licensed under the Apache License, Version 2.0 (the "License");\r
5 @REM you may not use this file except in compliance with the License.\r
6 @REM You may obtain a copy of the License at\r
7 @REM\r
8 @REM         http://www.apache.org/licenses/LICENSE-2.0\r
9 @REM\r
10 @REM Unless required by applicable law or agreed to in writing, software\r
11 @REM distributed under the License is distributed on an "AS IS" BASIS,\r
12 @REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
13 @REM See the License for the specific language governing permissions and\r
14 @REM limitations under the License.\r
15 @REM\r
16 @echo off\r
17 title redis-server\r
18 @if not "%ECHO%" == ""  echo %ECHO%\r
19 @if "%OS%" == "Windows_NT"  setlocal\r
20 \r
21 set DIRNAME=.\r
22 \r
23 if "%OS%" == "Windows_NT" set DIRNAME=%~dp0%\r
24 \r
25 set HOME=%DIRNAME%\r
26 set _REDISCMD=%DIRNAME%redis-server.exe\r
27 set _REDISCONF=%DIRNAME%redis.conf\r
28 \r
29 \r
30 echo ================Redis config info =============================================\r
31 echo Redis_HOME=%HOME%\r
32 echo config file=$_REDISCONF\r
33 echo Help:use $_REDISCMD --help for help\r
34 echo ===============================================================================\r
35 \r
36 \r
37 cd /d "%HOME%"\r
38 echo @WORK_DIR@%HOME%\r
39 echo @C_CMD@ "%_REDISCMD% %_REDISCONF%"\r
40 %_REDISCMD% %_REDISCONF%\r
41 IF ERRORLEVEL 1 goto showerror\r
42 exit\r
43 :showerror\r
44 echo WARNING: Error occurred during startup or Server abnormally stopped by way of killing the process,Please check!\r
45 echo After checking, press any key to close \r
46 pause\r
47 exit\r