From 57ba4f5f6749c317ea5daffe427fef0bee8a6625 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A0=B4=E5=A8=83=E9=85=B1?= Date: Wed, 28 Jun 2017 15:54:14 +0800 Subject: [PATCH] add initmudbjson.sh --- initmudbjson.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 initmudbjson.sh diff --git a/initmudbjson.sh b/initmudbjson.sh new file mode 100755 index 0000000..213410a --- /dev/null +++ b/initmudbjson.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +bash initcfg.sh +sed -i 's/sspanelv2/mudbjson/g' userapiconfig.py +ip_addr=`ifconfig -a|grep inet|grep -v inet6|grep -v "127.0.0."|grep -v -e "192\.168\..[0-9]\+\.[0-9]\+"|grep -v -e "10\.[0-9]\+\.[0-9]\+\.[0-9]\+"|awk '{print $2}'|tr -d "addr:"` +ip_count=`echo $ip_addr|grep -e "^[0-9]\+\.[0-9]\+\.[0-9]\+\.[0-9]\+$" -c` +if [[ $ip_count == 1 ]]; then + echo "server IP is "${ip_addr} + sed -i 's/127\.0\.0\.1/'${ip_addr}'/g' userapiconfig.py + port=`python -c 'import random;print(random.randint(10000, 65536))'` + python mujson_mgr.py -a -p ${port} +else + echo "unable to detect server IP" +fi +