1、下载winsw.exe,重命名为frpc-service.exe
,与frpc程序放在同一目录。
2、创建配置文件frpc-service.xml
,内容如下:
<service> <id>frpc</id> <name>frpc内网穿透服务</name> <description>frpc进程守护服务</description> <executable>frpc.exe</executable> <arguments>-c frpc.toml</arguments> <onfailure action="restart" delay="60 sec"/> </service>
3、以管理员身份运行命令安装服务:
./frpc-service.exe install
4、启动服务:
./frpc-service.exe start
其他命令:
./frpc-service.exe stop #暂停服务 ./frpc-service.exe uninstall #卸载服务
1、下载nssm,将nssm.exe
与frpc程序放在同一目录。
2、以管理员身份运行以下命令:
nssm install frpc nssm set frpc Application "C:\path\to\frpc.exe" nssm set frpc AppParameters "-c C:\path\to\frpc.ini"
3、启动服务:
net start frpc