trphoenix
2025-09-16 6deb612c87af21316f2dc2b9aa31da62efdd4508
Help/docs/Usages/QA/如何快速部署frpc服务.md
@@ -38,4 +38,24 @@
Created symlink /etc/systemd/system/multi-user.target.wants/frpc.service → /etc/systemd/system/frpc.service.
frpClient 安装完成并已启动。
如需卸载,请运行: sudo bash ./install-frp-x86_64.sh uninstall
```
/etc/systemd/system/frpc.service
```
[Unit]
Description=frp Client Service
After=network-online.target
Wants=network-online.target
[Service]
Type=simple
User=orangepi
WorkingDirectory=/opt/frpc
ExecStartPre=/bin/sleep 20
ExecStart=/opt/frpc/frpc -c /opt/frpc/frpc.toml
Restart=on-failure
[Install]
WantedBy=multi-user.target
```