Use command service mysql start
[vfc/nfvo/driver/vnfm/svnfm.git] / nokia / vnfmdriver / vfcadaptorservice / docker / instance-init.sh
index 39e8502..d1be95c 100755 (executable)
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
 #
 # Copyright 2017, Nokia Corporation
 #
 #
 # Config mysql credentials
 
+function start_mysql {
+    echo "start mysql ... "
+    service mysql start
+    sleep 5
+}
+
+start_mysql
+
 # Initialize MySQL schema
 cd bin
-./init_db.sh vnfm vnfmpass 127.0.0.1 3306
+./init_db.sh root rootpass 127.0.0.1 3306