Fix odlsli restart issue
[ccsdk/distribution.git] / odlsli / src / main / scripts / startODL.sh
1 #!/bin/bash
2
3 ###
4 # ============LICENSE_START=======================================================
5 # openECOMP : SDN-C
6 # ================================================================================
7 # Copyright (C) 2017 AT&T Intellectual Property. All rights
8 #                             reserved.
9 # ================================================================================
10 # Licensed under the Apache License, Version 2.0 (the "License");
11 # you may not use this file except in compliance with the License.
12 # You may obtain a copy of the License at
13 #
14 #      http://www.apache.org/licenses/LICENSE-2.0
15 #
16 # Unless required by applicable law or agreed to in writing, software
17 # distributed under the License is distributed on an "AS IS" BASIS,
18 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 # See the License for the specific language governing permissions and
20 # limitations under the License.
21 # ============LICENSE_END=========================================================
22 ###
23
24
25 # Install SDN-C platform components if not already installed and start container
26
27 ODL_HOME=${ODL_HOME:-/opt/opendaylight/current}
28 ODL_ADMIN_PASSWORD=${ODL_ADMIN_PASSWORD:-Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U}
29 CCSDK_HOME=${CCSDK_HOME:-/opt/onap/ccsdk}
30 SLEEP_TIME=${SLEEP_TIME:-120}
31 MYSQL_PASSWD=${MYSQL_PASSWD:-openECOMP1.0}
32
33 # Start karaf
34 echo "Starting OpenDaylight"
35 ${ODL_HOME}/bin/start
36 echo "Waiting ${SLEEP_TIME} seconds for OpenDaylight to initialize"
37 sleep ${SLEEP_TIME}
38
39 #
40 # Wait for database
41 #
42 echo "Waiting for mysql"
43 until mysql -h dbhost -u root -p${MYSQL_PASSWD} mysql &> /dev/null
44 do
45   printf "."
46   sleep 1
47 done
48 echo -e "\nmysql ready"
49
50 if [ ! -f ${CCSDK_HOME}/.installed ]
51 then
52     echo "Installing SDN-C database"
53     ${CCSDK_HOME}/bin/installSdncDb.sh
54
55     echo "Installing SDN-C platform features"
56     ${CCSDK_HOME}/bin/installFeatures.sh
57     if [ -x ${CCSDK_HOME}/svclogic/bin/install.sh ]
58     then
59         echo "Installing directed graphs"
60         ${CCSDK_HOME}/svclogic/bin/install.sh
61     fi
62
63     echo "Installed at `date`" > ${CCSDK_HOME}/.installed
64 fi
65
66 # Start client to force a wait on state of karaf server
67 ${ODL_HOME}/bin/client