From: Guangrong Fu Date: Fri, 1 Sep 2017 07:55:21 +0000 (+0800) Subject: Add DB information into the shell script X-Git-Tag: v1.0.0~65^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F93%2F9893%2F1;p=holmes%2Frule-management.git Add DB information into the shell script Add DB information before starting the service Change-Id: I3cc5b81d932f28d97afeee5eacfe3a3f398ad4bb Issue-ID: HOLMES-39 Signed-off-by: Guangrong Fu --- diff --git a/rulemgt-standalone/src/main/assembly/bin/run.sh b/rulemgt-standalone/src/main/assembly/bin/run.sh index b6ab959..1a01912 100644 --- a/rulemgt-standalone/src/main/assembly/bin/run.sh +++ b/rulemgt-standalone/src/main/assembly/bin/run.sh @@ -31,5 +31,10 @@ echo @JAVA_OPTS@ $JAVA_OPTS class_path="$main_path/:$main_path/holmes-rulemgt.jar" echo @class_path@ $class_path +sed -i "s|url:.*|url: jdbc:mysql://$URL_JDBC/holmes|" "$main_path/conf/rulemgt.yml" +sed -i "s|msbServerAddr:.*|msbServerAddr: http://$MSB_ADDR|" "$main_path/conf/rulemgt.yml" + +./initDB.sh root rootpass 3306 `${URL_JDBC%:*}` + "$JAVA" $JAVA_OPTS -classpath "$class_path" org.onap.holmes.rulemgt.RuleActiveApp server "$main_path/conf/rulemgt.yml"