diff options
author | yangyan <yangyanyj@chinamobile.com> | 2019-04-08 17:42:06 +0800 |
---|---|---|
committer | yangyan <yangyanyj@chinamobile.com> | 2019-04-08 17:42:12 +0800 |
commit | eea6d3d690dc7fdd1b47a49de77cd942831ec558 (patch) | |
tree | fc61fddce0835bdb5e996342c4d1129869c2ee74 | |
parent | bf4b8692dbddbae34713ea029fdc13e2a8bf2a60 (diff) |
fix the bug of catalog
Change-Id: Ia44819366036c27a06a8c92f05bb28fdf9c53d33
Issue-ID: VFC-1339
Signed-off-by: yangyan <yangyanyj@chinamobile.com>
-rwxr-xr-x | docker/instance_init.sh | 4 | ||||
-rwxr-xr-x | run.sh | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/docker/instance_init.sh b/docker/instance_init.sh index 7dde8c72..3fb9a8e0 100755 --- a/docker/instance_init.sh +++ b/docker/instance_init.sh @@ -28,6 +28,6 @@ GET_CATALOG_DB="show databases like 'nfvocatalog';" CATALOG_DB=`mysql -u$MYSQL_ROOT_USER -p$MYSQL_ROOT_PASSWORD -P$MYSQL_PORT -h$MYSQL_IP -e "GET_CATALOG_DB"` if [[ "$CATALOG_DB" == "" ]]; then create_database - + migrate_database fi -migrate_database + @@ -19,7 +19,7 @@ if [ ! -x $logDir ]; then fi # nohup python manage.py runserver 0.0.0.0:8806 > /dev/null & -nohup uwsgi --http :8806 -t 120 --module lcm.wsgi --master --processes 4 & +nohup uwsgi --http :8806 -t 120 --module catalog.wsgi --master --processes 4 & while [ ! -f $logDir/runtime_catalog.log ]; do sleep 1 |