rename openo to onap
[vfc/nfvo/driver/sfc.git] / zte / sfc-driver / plugin-standalone / src / main / assembly / run.sh
1 #!/bin/bash
2 #
3 # Copyright 2016 ZTE Corporation.
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #     http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 #
17 #     Author: Zhang Zhou
18 #     email: zhang.zhou1@zte.com.cn
19 #
20
21 #JAVA_HOME="/home/conductortest/jdk1.7/jdk/linux"
22
23 DIRNAME=`dirname $0`
24 RUNHOME=`cd $DIRNAME/; pwd`
25 echo @RUNHOME@ $RUNHOME
26
27 #JAVA_HOME=$(readlink -f /usr/bin/javac | sed "s:/bin/javac::")
28 echo @JAVA_HOME@ $JAVA_HOME
29 JAVA="$JAVA_HOME/bin/java"
30 echo @JAVA@ $JAVA
31 JAVA_VERSION=`$JAVA -version 2>&1 |awk 'NR==1{ sub(/"/,""); print substr($3,1,3)}'`
32 echo @JAVA_VERSION@ $JAVA_VERSION
33 if [ $JAVA_VERSION = "1.8" ]
34 then
35     JAVA_OPTS="-Xms16m -Xmx128m -XX:+UseSerialGC -XX:MaxMetaspaceSize=64m -XX:NewRatio=2"
36 else
37     JAVA_OPTS="-Xms16m -Xmx128m -XX:+UseSerialGC -XX:MaxPermSize=64m -XX:NewRatio=2"    
38 fi
39 port=8779
40 #JAVA_OPTS="$JAVA_OPTS -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,address=$port,server=y,suspend=n"
41 echo @JAVA_OPTS@ $JAVA_OPTS
42
43 class_path="$RUNHOME/:$RUNHOME/sfc-service.jar"
44 echo @class_path@ $class_path
45
46 "$JAVA" $JAVA_OPTS -classpath "$class_path"  SfcDriver server "$RUNHOME/conf/console.yml"
47
48