summaryrefslogtreecommitdiffstats
path: root/docker/instance_init.sh
blob: c240114468c49ed650422108dfd81111a8db2a91 (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
#!/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 {
    service mysql start
    sleep 1
}

function create_database {
    cd /service/vfc/nfvo/catalog/resources/bin
    if [ ! -f dbexist.txt ]; then
        echo 1 > dbexist.txt
        bash initDB.sh root $MYSQL_ROOT_PASSWORD 3306 127.0.0.1
    fi
    cd /service
}

install_python_libs
start_redis_server
start_mysql
create_database