Integrate wso2bps
[vfc/nfvo/wfengine.git] / wso2bpel-ext / wso2bpel-core / distribution / standalone / src / main / assembly / initDB.sh
1 #!/bin/bash
2 #
3 # Copyright 2016 ZTE Corporation.
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #     http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 #
17
18 DIRNAME=`dirname $0`
19 HOME=`cd $DIRNAME/; pwd`
20 user=$1
21 password=$2
22 port=$3
23 host=$4
24
25
26 echo "start to change db ip and port"
27 sed -i "s|localhost|$host|" wso2bps/repository/conf/datasources/bps-datasources.xml
28 sed -i "s|3306|$port|" wso2bps/repository/conf/datasources/bps-datasources.xml
29 cat wso2bps/repository/conf/datasources/bps-datasources.xml
30 echo "end of change db ip and port"
31 echo ""
32
33 echo "start create wso2 bpel db"
34 mysql -u$user -p$password -P$port -h$host <$HOME/wso2bps/dbscripts/bps/bpel/create/wso-bpel-mysql-createdb.sql
35 sql_result=$?
36 if [ $sql_result != 0 ] ; then
37     echo "failed to create wso2 bpel database"
38     exit 1
39 fi
40
41
42 echo "start create wso2 bpel table"
43 mysql -u$user -p$password -P$port -h$host -Dwso_bpel <$HOME/wso2bps/dbscripts/bps/bpel/create/mysql.sql
44 sql_result=$?
45 if [ $sql_result != 0 ] ; then
46   echo "failed to create wso2 bpel table"
47   exit 1
48 fi
49
50 echo "init wso2 bpel database success!"
51 exit 0
52
53