Upload the ESR server seed code.
[aai/esr-server.git] / esr-core / distribution / standalone / src / main / assembly / bin / run.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
17 @echo off
18 title extsys-service
19
20 set RUNHOME=%~dp0
21 echo ### RUNHOME: %RUNHOME%
22 echo ### Starting extsys-service
23 set main_path=%RUNHOME%..\
24 cd /d %main_path%
25 set JAVA="%JAVA_HOME%\bin\java.exe"
26 set port=8312
27 set jvm_opts=-Xms50m -Xmx128m
28 rem set jvm_opts=%jvm_opts% -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,address=%port%,server=y,suspend=n
29 set class_path=%main_path%;%main_path%extsys-service.jar
30 echo ### jvm_opts: %jvm_opts%
31 echo ### class_path: %class_path%
32
33 %JAVA% -classpath %class_path% %jvm_opts% org.openo.commonservice.extsys.ExtsysApp server %main_path%conf/extsys.yml
34
35 IF ERRORLEVEL 1 goto showerror
36 exit
37 :showerror
38 echo WARNING: Error occurred during startup or Server abnormally stopped by way of killing the process,Please check!
39 echo After checking, press any key to close 
40 pause
41 exit