Browse Source

update initmudbjson.sh

dev
破娃酱 7 years ago
parent
commit
ab8765191e
  1. 7
      initmudbjson.sh

7
initmudbjson.sh

@ -7,8 +7,11 @@ ip_count=`echo $ip_addr|grep -e "^[0-9]\+\.[0-9]\+\.[0-9]\+\.[0-9]\+$" -c`
if [[ $ip_count == 1 ]]; then if [[ $ip_count == 1 ]]; then
echo "server IP is "${ip_addr} echo "server IP is "${ip_addr}
sed -i 's/SERVER_PUB_ADDR = .\+/SERVER_PUB_ADDR = '${ip_addr}'/g' userapiconfig.py sed -i 's/SERVER_PUB_ADDR = .\+/SERVER_PUB_ADDR = '${ip_addr}'/g' userapiconfig.py
port=`python -c 'import random;print(random.randint(10000, 65536))'` user_count=`python mujson_mgr.py -l|grep -c ""`
python mujson_mgr.py -a -p ${port} if [[ $user_count == 0 ]]; then
port=`python -c 'import random;print(random.randint(10000, 65536))'`
python mujson_mgr.py -a -p ${port}
fi
else else
echo "unable to detect server IP" echo "unable to detect server IP"
fi fi

Loading…
Cancel
Save