Divide the MSB source codes into two repos
[msb/apigateway.git] / redis-ext / src / assembly / resources / linux / redis / run.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
19 DIRNAME=`dirname $0`
20 HOME=`cd $DIRNAME/; pwd`
21 _REDISCMD="$HOME/redis-server"
22 _REDISCONF="$HOME/conf/redis.conf"
23 _BGREWRITEAOF="$HOME/BGREWRITEAOF.sh"
24 REDIS_WORKS=$HOME/../redis-works
25
26 if [ ! -d "$REDIS_WORKS" ]; then 
27 echo there is no $REDIS_WORKS 
28 mkdir "$REDIS_WORKS" 
29 fi 
30
31
32 if [ -n "${APIGATEWAY_MODE}" -a -n "${APIGATEWAY_REDIS_PORT}" ]; then
33         sed -i 's/port 6379/port '${APIGATEWAY_REDIS_PORT}'/g' $_REDISCONF
34         sed -i 's/redis_6379/redis_'${APIGATEWAY_REDIS_PORT}'/g' $_REDISCONF
35         sed -i 's/-p 6379/-p '${APIGATEWAY_REDIS_PORT}'/g' $_BGREWRITEAOF
36 fi
37
38 echo =========== Redis config info  =============================================
39 echo Redis_HOME=$HOME
40 echo config file=$_REDISCONF
41 echo  Help:use $_REDISCMD --help for help
42 echo ===============================================================================
43 cd $HOME; pwd
44
45 echo @C_CMD@ $_REDISCMD $_REDISCONF
46 $_REDISCMD $_REDISCONF