user service mysql start
[vfc/nfvo/driver/vnfm/svnfm.git] / nokia / vnfmdriver / vfcadaptorservice / docker / instance-init.sh
index d1be95c..1b55e98 100755 (executable)
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
 #
 # Copyright 2017, Nokia Corporation
 #
 # Config mysql credentials
 
 function start_mysql {
-    echo "start mysql ... "
-    service mysql start
+    echo "start mysql in instance_init ... "
+    service mysql start  > myout_instance_init.file 2>&1
+    cat myout_instance_init.file
+    service mysql status > myout_instance_init_mysql_status.file 2>&1
+    cat myout_instance_init_mysql_status.file
     sleep 5
 }