Conver DNS to IP
[msb/apigateway.git] / distributions / msb-apigateway / src / assembly / resources / startup4docker.sh
1 #
2 # Copyright (C) 2016 ZTE, Inc. and others. All rights reserved. (ZTE)
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #         http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 #
16
17 #!/bin/sh
18 DIRNAME=`dirname $0`
19 RUNHOME=`cd $DIRNAME/; pwd`
20 echo @RUNHOME@ $RUNHOME
21
22 if echo $SDCLIENT_IP | grep -q '^[0-9.]\+$';
23   then
24     echo "SDCLIENT_IP is a IP"
25   else
26     echo "Convert SDCLIENT_IP to IP"
27     export SDCLIENT_IP=`getent hosts $SDCLIENT_IP | awk '{ print $1 }'`
28     echo $SDCLIENT_IP
29 fi
30
31 echo "### Starting redis";
32 cd ./redis
33 ./run.sh 
34 cd $RUNHOME
35
36 echo "\n\n### Starting openresty";
37 cd ./openresty
38 ./run.sh
39 cd $RUNHOME
40
41 echo "\n\n### Starting apiroute"
42 cd ./apiroute
43 ./run.sh