在ngrok目录下新建一个start.sh文件
path=/usr/local/ngrok
$path/ngrok -config=$path/ngrok.cfg start ssh
在/etc/rc.d/init.d/下新建ngrok文件
#!/bin/sh
#chkconfig:2345 70 30
#description:ngrok
ngrok_path=/usr/local/ngrok
case "$1" in
start)
echo "start ngrok service.."
sh ${ngrok_path}/start.sh
;;
*)
exit 1
;;
esac
修改ngrok文件权限
chmod 755 ngrok
注册自启动
chkconfig –add ngrok
查询启动服务
chkconfig –list ngrok