summaryrefslogtreecommitdiffstats
path: root/docker/instance_init.sh
diff options
context:
space:
mode:
authorfujinhua <fu.jinhua@zte.com.cn>2017-09-01 09:35:20 +0800
committerfujinhua <fu.jinhua@zte.com.cn>2017-09-01 09:36:29 +0800
commitd25d9fb96d25c4b5be08f5affd07db22516bfb2b (patch)
treefb617c17a3befd3f168855d90cf7de8ead2f9d7e /docker/instance_init.sh
parente676d851e8bba882094d972aa6a9ee5409067891 (diff)
Move docker dir to root dir
Change-Id: Iea49ff5a41b09b07fadd29b54ad46164292d3823 Issue-Id: VFC-208 Signed-off-by: fujinhua <fu.jinhua@zte.com.cn>
Diffstat (limited to 'docker/instance_init.sh')
-rwxr-xr-xdocker/instance_init.sh40
1 files changed, 40 insertions, 0 deletions
diff --git a/docker/instance_init.sh b/docker/instance_init.sh
new file mode 100755
index 00000000..255bbe24
--- /dev/null
+++ b/docker/instance_init.sh
@@ -0,0 +1,40 @@
+#!/bin/bash
+
+function install_python_libs {
+ cd /service/vfc/nfvo/lcm/
+ pip install -r requirements.txt
+}
+
+function start_redis_server {
+ redis-server &
+}
+
+function start_mysql {
+ service mysql start
+}
+
+function create_database {
+ cd /service/vfc/nfvo/lcm/resources/bin
+ bash initDB.sh root $MYSQL_ROOT_PASSWORD 3306 127.0.0.1
+}
+
+function edit_configs {
+ cd /service/vfc/nfvo/lcm/
+ bash docker/instance_config.sh
+}
+
+function start_server {
+ cd /service/vfc/nfvo/lcm/
+ bash run.sh
+}
+
+if [ $MYSQL_ROOT_PASSWORD ]; then
+ install_python_libs
+ start_redis_server
+ start_mysql
+ create_database
+ edit_configs
+ start_server
+else
+ echo "MYSQL_ROOT_PASSWORD environment variable not set."
+fi