msb protocol synch change
[msb/apigateway.git] / msb-core / distributions / standalone / src / assembly / resource / startup.bat
1 @REM
2 @REM Copyright 2016 ZTE Corporation.
3 @REM
4 @REM Licensed under the Apache License, Version 2.0 (the "License");
5 @REM you may not use this file except in compliance with the License.
6 @REM You may obtain a copy of the License at
7 @REM
8 @REM     http://www.apache.org/licenses/LICENSE-2.0
9 @REM
10 @REM Unless required by applicable law or agreed to in writing, software
11 @REM distributed under the License is distributed on an "AS IS" BASIS,
12 @REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 @REM See the License for the specific language governing permissions and
14 @REM limitations under the License.
15 @REM
16 @REM     Author: Zhaoxing Meng
17 @REM     email: meng.zhaoxing1@zte.com.cn
18 @REM
19
20 @echo off
21 title msb
22
23 set RUNHOME=%~dp0
24 echo ##RUNHOME %RUNHOME%
25
26 rem dir /B /S run.bat > %~dp0\run.tmp
27 rem For /f %%i in (%~dp0\run.tmp) DO start %%i
28
29 echo ### Starting redis
30 start /D %RUNHOME%redis run.bat
31
32 echo ### Starting apiroute
33 start /D %RUNHOME%apiroute run.bat run
34
35 echo ### Starting openresty
36 start /D %RUNHOME%openresty run.bat  
37
38 echo ### Starting external API gateway
39 start /D %RUNHOME%eag run.bat  
40
41 echo Startup will be finished in background...
42 echo  + Run "start .\apiroute-works\logs\application.log" to see what's happening
43 echo  + Wait a minute
44 echo  + Open "http://<HOST>" in your browser to access the microservice bus !
45 rem del run.tmp
46 :finalend