diff options
author | GuangrongFu <fu.guangrong@zte.com.cn> | 2018-04-03 11:20:47 +0800 |
---|---|---|
committer | GuangrongFu <fu.guangrong@zte.com.cn> | 2018-04-03 11:20:47 +0800 |
commit | 531763da2a1e8a478df4f45be205199be457c176 (patch) | |
tree | b7bdc5682a32eee5b5d311976f9cb70a26c8cb5a /engine-d-standalone/src/main/assembly/bin/run.sh | |
parent | 7a0c31e82120ca8dc97e87befa96410db5bcb3f3 (diff) |
Fixed the start-up failure of the engine module
Change-Id: I125c922d021530904916b16404847bdd5b6c46b1
Issue-ID: HOLMES-128
Signed-off-by: GuangrongFu <fu.guangrong@zte.com.cn>
Diffstat (limited to 'engine-d-standalone/src/main/assembly/bin/run.sh')
-rw-r--r-- | engine-d-standalone/src/main/assembly/bin/run.sh | 7 |
1 files changed, 7 insertions, 0 deletions
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" |