X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=engine-d-standalone%2Fsrc%2Fmain%2Fassembly%2Fbin%2Frun.sh;h=dab4cbcdac506249a1404893caa784c3cf18c0ef;hb=493c2f4e8f5d5c6f642f300d4e116873cd9051c8;hp=a1aa671e2df4c8621ae10311cf3e55432ac5a18c;hpb=e16a7b972f291b8048e2961e69fa4da78d15c3b4;p=holmes%2Fengine-management.git diff --git a/engine-d-standalone/src/main/assembly/bin/run.sh b/engine-d-standalone/src/main/assembly/bin/run.sh index a1aa671..dab4cbc 100644 --- a/engine-d-standalone/src/main/assembly/bin/run.sh +++ b/engine-d-standalone/src/main/assembly/bin/run.sh @@ -1,3 +1,5 @@ +#!/bin/bash + # # Copyright 2017 ZTE Corporation. # @@ -31,5 +33,45 @@ echo @JAVA_OPTS@ $JAVA_OPTS class_path="$main_path/:$main_path/holmes-engine-d.jar" echo @class_path@ $class_path +sed -i "s/activemq.username=.*/activemq.username=activemq/" /home/activemq/apache-activemq-5.9.0/conf/credentials.properties +sed -i "s/activemq.password=.*/activemq.password=v1/" /home/activemq/apache-activemq-5.9.0/conf/credentials.properties +/home/activemq/apache-activemq-5.9.0/bin/activemq start + +if [ -z ${JDBC_USERNAME} ]; then + export JDBC_USERNAME=holmes + echo "No user name is specified for the database. Use the default value \"$JDBC_USERNAME\"." +fi + +if [ -z ${JDBC_PASSWORD} ]; then + export JDBC_PASSWORD=holmespwd + echo "No password is specified for the database. Use the default value \"$JDBC_PASSWORD\"." +fi + +if [ -z ${DB_NAME} ]; then + export DB_NAME=holmes + echo "No database is name is specified. Use the default value \"$DB_NAME\"." +fi + +sed -i "s|url:.*|url: jdbc:postgresql://$URL_JDBC/$DB_NAME|" "$main_path/conf/engine-d.yml" +sed -i "s|user:.*|user: $JDBC_USERNAME|" "$main_path/conf/engine-d.yml" +sed -i "s|password:.*|password: $JDBC_PASSWORD|" "$main_path/conf/engine-d.yml" + +export SERVICE_IP=`hostname -i` +echo SERVICE_IP=${SERVICE_IP} + +if [ ! -z ${TESTING} ] && [ ${TESTING} == 1 ]; then + if [ ! -z ${HOST_IP} ]; then + export HOSTNAME=${HOST_IP}:9102 + else + export HOSTNAME=${SERVICE_IP}:9102 + fi +fi + +#ActiveMQ IP Configurations +sed -i "s|brokerIp:.*|brokerIp: $SERVICE_IP|" "$main_path/conf/engine-d.yml" + +cat "$main_path/conf/engine-d.yml" + + "$JAVA" $JAVA_OPTS -classpath "$class_path" org.onap.holmes.engine.EngineDActiveApp server "$main_path/conf/engine-d.yml"