~演示环境:centos7
使用systemctl进行管理 开机自启等
下载网云穿
wget -O /usr/local/ https://down.xiaomy.net/linux/wyc_linux_64
如提示没有wget命令可以使用yum
install -y wget或者apt-get install -y wget安装
编写启动服务脚本(修改你自己的隧道token)
vim /usr/lib/systemd/system/wyc.service
[Unit]
Description=wangyunchuan
After=network.target
[Service]
Type=simple
ExecStart=/usr/local/wyc_linux_64 -token=xxxxxxx
PrivateTmp=true
[Install]
WantedBy=multi-user.target
使用systemctl管理
运行:systemctl start wyc
查看状态: systemctl status wyc
重启:systemctl restart wyc
停止:systemctl stop wyc
开机启动: systemctl enable wyc