aboutsummaryrefslogtreecommitdiffstats
path: root/docker/instance_init.sh
blob: f880c6bc531f9a4e699830ef0f894b3533b4a1b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/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
    # 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/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