diff options
Diffstat (limited to 'lcm/docker/instance_init.sh')
-rwxr-xr-x | lcm/docker/instance_init.sh | 25 |
1 files changed, 5 insertions, 20 deletions
diff --git a/lcm/docker/instance_init.sh b/lcm/docker/instance_init.sh index 03c10a80..f33294db 100755 --- a/lcm/docker/instance_init.sh +++ b/lcm/docker/instance_init.sh @@ -9,6 +9,7 @@ function start_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 @@ -22,23 +23,7 @@ function create_database { bash initDB.sh root $MYSQL_ROOT_PASSWORD 3306 127.0.0.1 } -function edit_configs { - cd /service/vfc/gvnfm/vnflcm/lcm/docker - bash instance_config.sh -} - -function start_server { - cd /service/vfc/gvnfm/vnflcm/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 +install_python_libs +start_redis_server +start_mysql +create_database |