Add DB information into the shell script 93/9893/1
authorGuangrong Fu <fu.guangrong@zte.com.cn>
Fri, 1 Sep 2017 07:55:21 +0000 (15:55 +0800)
committerGuangrong Fu <fu.guangrong@zte.com.cn>
Fri, 1 Sep 2017 07:55:21 +0000 (15:55 +0800)
Add DB information before starting the service

Change-Id: I3cc5b81d932f28d97afeee5eacfe3a3f398ad4bb
Issue-ID: HOLMES-39
Signed-off-by: Guangrong Fu <fu.guangrong@zte.com.cn>
rulemgt-standalone/src/main/assembly/bin/run.sh

index b6ab959..1a01912 100644 (file)
@@ -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"