diff options
Diffstat (limited to 'standalone')
-rw-r--r-- | standalone/src/main/assembly/bin/run.sh | 8 | ||||
-rw-r--r-- | standalone/src/main/assembly/resources/bin/initDB.sh | 8 |
2 files changed, 3 insertions, 13 deletions
diff --git a/standalone/src/main/assembly/bin/run.sh b/standalone/src/main/assembly/bin/run.sh index 08d659cf..25a83d59 100644 --- a/standalone/src/main/assembly/bin/run.sh +++ b/standalone/src/main/assembly/bin/run.sh @@ -21,15 +21,11 @@ echo @RUNHOME@ $RUNHOME echo "Starting mysql" service mysql start -sleep 10 -echo "run.sh 1" +sleep 100 SCRIPT="/home/uui/resources/bin/initDB.sh" -echo "run.sh 2" chmod 755 $SCRIPT -echo "run.sh 3" -$SCRIPT root root 3306 127.0.0.1 -echo "run.sh 4" +$SCRIPT root root 3306 127.0.0.1 echo @JAVA_HOME@ $JAVA_HOME JAVA="$JAVA_HOME/bin/java" diff --git a/standalone/src/main/assembly/resources/bin/initDB.sh b/standalone/src/main/assembly/resources/bin/initDB.sh index b9504926..06d2bfc8 100644 --- a/standalone/src/main/assembly/resources/bin/initDB.sh +++ b/standalone/src/main/assembly/resources/bin/initDB.sh @@ -1,4 +1,4 @@ -#! /bin/bash +#!/bin/bash # # Copyright (C) 2017 CMCC, Inc. and others. All rights reserved. # @@ -15,21 +15,15 @@ # limitations under the License. # -echo "initDB.sh 1" DIRNAME=`dirname $0` -echo "initDB.sh 2" HOME=`cd $DIRNAME/; pwd` -echo "initDB.sh 3" user=$1 password=$2 port=$3 host=$4 -echo "initDB.sh 4" echo "start create usecase-ui db" sql_path=$HOME/../ -echo "initDB.sh 5" mysql -u$user -p$password -P$port -h$host <$sql_path/dbscripts/mysql/usecase-ui-createdb.sql -echo "initDB.sh 6" sql_result=$? if [ $sql_result != 0 ] ; then echo "failed to create usecase-ui database" |