Fetch the repository succeeded.
This action will force synchronization from 於之/IOTGate, which will overwrite any changes that you have made since you forked the repository, and can not be recovered!!!
Synchronous operation will process in the background and will refresh the page when finishing processing. Please be patient.
#!/bin/sh
#守护进程脚本,当网关异常关闭时主动重启网关
#建议直接通过该脚本启动网关!
#author:杨承
#网关编号
NUM=1
#基础目录,指定配置文件以及网关日志都在当前路径下
BASE_DIR=/opt
#是否开启集群 YES;NO
ISCLUSTER=NO
#前置端口--开源版本无法指定前置端口,此处无意义
PORT=8888
#前置IP
MASTERIP=127.0.0.1
#zookeeper地址
ZK_ADDR=192.168.18.27:2181,192.168.18.27:2182,192.168.18.27:2183
#网关日志名称
LOGNAME=iotgate
#JVM优化参数
JVM="-Xms2g -Xmx2g -XX:NewRatio=2 -XX:+UseG1GC -Dio.netty.leakDetectionLevel=advanced -Xloggc:$BASE_DIR/gc.log -XX:MaxDirectMemorySize=1G -Dio.netty.allocator.pageSize=8192 -Dio.netty.allocator.maxOrder=10 -Dio.netty.recycler.maxCapacity=0 -Dio.netty.recycler.maxCapacity.default=0"
PAT=`dirname $0`
function start {
if [ "$ISCLUSTER" == “YES” ]
then
sleep 5
command=`nohup java $JVM -jar $BASE_DIR/IOTGate.jar -c -n $NUM -f $BASE_DIR/iotGate.conf -z $ZK_ADDR > $BASE_DIR/$LOGNAME.log &`
`info $command`
else
command=`nohup java $JVM -jar $BASE_DIR/IOTGate.jar -n $NUM -f $BASE_DIR/iotGate.conf -m $MASTERIP > $BASE_DIR/$LOGNAME.log &`
`info $command`
fi
tail -n 30 $BASE_DIR/$LOGNAME.log
}
for((i=0 ; ; i++))
do
sleep 1
server=`ps aux | grep IOTGate.jar | grep -v grep`
if [ ! "$server" ]; then
#如果不存在就启动
start
fi
sleep 1
done
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。