blob: c2d91e827188ee5968ad2302b17e0a1b50a5495c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/bash
function start_redis_server {
redis-server &
}
function start_mysql {
find /var/lib/mysql -type f -exec touch {} \; && service mysql start
sleep 1
}
function create_database {
cd /service/vfc/gvnfm/vnfres/res/assembly/bin
bash initDB.sh root $MYSQL_ROOT_PASSWORD 3306 127.0.0.1
cd /service
}
start_redis_server
start_mysql
create_database
|