Fix the Grammatical Error in the Script
[holmes/engine-management.git] / engine-d-standalone / src / main / assembly / bin / run.sh
1 #
2 # Copyright 2017 ZTE Corporation.
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #     http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 #
16
17 DIRNAME=`dirname $0`
18 RUNHOME=`cd $DIRNAME/; pwd`
19 echo @RUNHOME@ $RUNHOME
20
21 echo @JAVA_HOME@ $JAVA_HOME
22 JAVA="$JAVA_HOME/bin/java"
23 echo @JAVA@ $JAVA
24 main_path=$RUNHOME/..
25 cd $main_path
26 JAVA_OPTS="-Xms50m -Xmx128m"
27 port=8312
28 #JAVA_OPTS="$JAVA_OPTS -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,address=$port,server=y,suspend=n"
29 echo @JAVA_OPTS@ $JAVA_OPTS
30
31 class_path="$main_path/:$main_path/holmes-engine-d.jar"
32 echo @class_path@ $class_path
33
34 sed -i "s/activemq.username=.*/activemq.username=activemq/" /home/activemq/apache-activemq-5.9.0/conf/credentials.properties
35 sed -i "s/activemq.password=.*/activemq.password=v1/" /home/activemq/apache-activemq-5.9.0/conf/credentials.properties
36 /home/activemq/apache-activemq-5.9.0/bin/activemq start
37
38 sed -i "s|url:.*|url: jdbc:postgresql://$URL_JDBC/holmes|" "$main_path/conf/engine-d.yml"
39
40
41 export SERVICE_IP=`hostname -i`
42 echo SERVICE_IP=${SERVICE_IP}
43
44 if [ ${TESTING} == 1 ]; then
45     export HOSTNAME=${SERVICE_IP}:9102
46 fi
47
48 #ActiveMQ IP Configurations
49 sed -i "s|brokerIp:.*|brokerIp: $SERVICE_IP|" "$main_path/conf/engine-d.yml"
50
51 cat "$main_path/conf/engine-d.yml"
52
53
54 "$JAVA" $JAVA_OPTS -classpath "$class_path" org.onap.holmes.engine.EngineDActiveApp server "$main_path/conf/engine-d.yml"
55