简介
在 Linux 系统下,使用systemd
可以方便地控制 frp 服务端 frps
的启动和停止、配置后台运行和开启自启。
要使用 systemd
来控制 frps
,需要先安装 systemd
,然后在 /etc/systemd/system
目录下创建一个 frps.service
文件。
安装systemd
如Linux服务端上没有安装 systemd
,可以使用 yum
或 apt
等命令安装 systemd
# yum
yum install systemd
# apt
apt install systemd
编辑frps.service
文件
$ vim /etc/systemd/system/frps.service
写入内容
[Unit]
# 服务名称,可自定义
Description = frp server
After = network.target syslog.target
Wants = network.target
[Service]
Type = simple
# 启动frps的命令,需修改为您的frps的安装路径
ExecStart = /path/to/frps -c /path/to/frps.ini
[Install]
WantedBy = multi-user.target
使用systemd
命令管理frps
# 启动frps
systemctl start frps
# 停止frps
systemctl stop frps
# 重启frps
systemctl restart frps
# 查看frps状态
systemctl status frps
配置frps
开机自启
systemctl enable frps
其他
使用systemd
控制frpc
及配置开机自启流程同上