summaryrefslogtreecommitdiffstats
path: root/res/docker/instance_init.sh
diff options
context:
space:
mode:
Diffstat (limited to 'res/docker/instance_init.sh')
-rw-r--r--res/docker/instance_init.sh31
1 files changed, 31 insertions, 0 deletions
diff --git a/res/docker/instance_init.sh b/res/docker/instance_init.sh
new file mode 100644
index 0000000..fd7c60f
--- /dev/null
+++ b/res/docker/instance_init.sh
@@ -0,0 +1,31 @@
+#!/bin/bash
+
+function install_python_libs {
+ cd /service/vfc/gvnfm/vnfres/res/
+ pip install -r requirements.txt
+}
+
+function start_redis_server {
+ redis-server &
+}
+
+function start_mysql {
+ su mysql -c /usr/bin/mysqld_safe &
+ service mysql start
+ # Wait for mysql to initialize; Set mysql root password
+ for i in {1..10}; do
+ sleep $i
+ bash /usr/bin/mysqladmin -u root password $MYSQL_ROOT_PASSWORD &> /dev/null && break
+ done
+}
+
+function create_database {
+ cd /service/vfc/gvnfm/vnfres/res/assembly/bin
+ bash initDB.sh root $MYSQL_ROOT_PASSWORD 3306 127.0.0.1
+ cd /service
+}
+
+install_python_libs
+start_redis_server
+start_mysql
+create_database