From 531763da2a1e8a478df4f45be205199be457c176 Mon Sep 17 00:00:00 2001 From: GuangrongFu Date: Tue, 3 Apr 2018 11:20:47 +0800 Subject: Fixed the start-up failure of the engine module Change-Id: I125c922d021530904916b16404847bdd5b6c46b1 Issue-ID: HOLMES-128 Signed-off-by: GuangrongFu --- engine-d-standalone/src/main/assembly/bin/run.sh | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'engine-d-standalone/src/main/assembly/bin/run.sh') diff --git a/engine-d-standalone/src/main/assembly/bin/run.sh b/engine-d-standalone/src/main/assembly/bin/run.sh index f682ed7..a1290af 100644 --- a/engine-d-standalone/src/main/assembly/bin/run.sh +++ b/engine-d-standalone/src/main/assembly/bin/run.sh @@ -67,6 +67,12 @@ if [ ! -z ${TESTING} ] && [ ${TESTING} == 1 ]; then fi fi +export DB_PORT=5432 +if [ ! -z ${URL_JDBC} ] && [ `expr index $URL_JDBC :` != 0 ]; then + export DB_PORT="${URL_JDBC##*:}" +fi +echo DB_PORT=$DB_PORT + #ActiveMQ IP Configurations sed -i "s|brokerIp:.*|brokerIp: $SERVICE_IP|" "$main_path/conf/engine-d.yml" @@ -79,6 +85,7 @@ sed -i "s|keyStorePassword:.*|keyStorePassword: $KEY_PASSWORD|" "$main_path/conf cat "$main_path/conf/engine-d.yml" +./bin/initDB.sh $JDBC_USERNAME $JDBC_PASSWORD $DB_NAME $DB_PORT "${URL_JDBC%:*}" "$JAVA" $JAVA_OPTS -classpath "$class_path" org.onap.holmes.engine.EngineDActiveApp server "$main_path/conf/engine-d.yml" -- cgit 1.2.3-korg