使用 systemd

这个示例将会演示在 Linux 系统下使用 systemd 控制 frps 及配置开机自启。

在 Linux 系统下,使用systemd 可以方便地控制 frp 服务端 frps 的启动和停止、配置后台运行和开启自启。

要使用 systemd 来控制 frps,需要先安装 systemd,然后在 /etc/systemd/system 目录下创建一个 frps.service 文件。

  1. 如Linux服务端上没有安装 systemd,可以使用 yumapt 等命令安装 systemd

    1. # yum
    2. yum install systemd
    3. # apt
    4. apt install systemd
  2. 使用文本编辑器,如 vim 创建并编辑 frps.service 文件。

    1. $ vim /etc/systemd/system/frps.service

    写入内容

    1. [Unit]
    2. # 服务名称,可自定义
    3. Description = frp server
    4. After = network.target syslog.target
    5. Wants = network.target
    6. [Service]
    7. Type = simple
    8. # 启动frps的命令,需修改为您的frps的安装路径
    9. ExecStart = /path/to/frps -c /path/to/frps.ini
    10. [Install]
    11. WantedBy = multi-user.target
  3. 使用 systemd 命令,管理 frps。

    1. # 启动frp
    2. systemctl start frps
    3. # 停止frp
    4. systemctl stop frps
    5. # 重启frp
    6. systemctl restart frps
    7. # 查看frp状态
    8. systemctl status frps
  4. 配置 frps 开机自启。

    1. systemctl enable frps

最后修改 March 8, 2023: update for new release (0dd5425)