aboutsummaryrefslogtreecommitdiffstats
path: root/docker/instance_init.sh
diff options
context:
space:
mode:
authorfengyuanxing <feng.yuanxing@zte.com.cn>2017-09-05 14:46:12 +0800
committerfengyuanxing <feng.yuanxing@zte.com.cn>2017-09-05 15:47:56 +0800
commit583408b26920a38ed189a3bc0a8df7c7ad5028be (patch)
treecefd5909bea9a623ca081081f39366e32c9de33c /docker/instance_init.sh
parentc5fd5f6016b8bef47b00eed0dbaebeced7265f7d (diff)
Delete unnecessary files
Change-Id: I3224eb7ddbe66ccea30c1b1833111ef9af56f83c Issue-Id: VFC-276 Signed-off-by: fengyuanxing <feng.yuanxing@zte.com.cn>
Diffstat (limited to 'docker/instance_init.sh')
-rwxr-xr-xdocker/instance_init.sh31
1 files changed, 31 insertions, 0 deletions
diff --git a/docker/instance_init.sh b/docker/instance_init.sh
new file mode 100755
index 00000000..b68e621d
--- /dev/null
+++ b/docker/instance_init.sh
@@ -0,0 +1,31 @@
+#!/bin/bash
+
+function install_python_libs {
+ cd /service/vfc/nfvo/catalog/
+ 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/nfvo/catalog/resources/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