Linux设置Frps Frpc服务开启启动

Python · 2020-12-03 · 288 人浏览

记录一下Linux设置Frp开机启动的方法

  • 在/etc/systemd/system下添加frps.service或frpc.service

    [Unit]
    Description=frpc daemon
    After=syslog.target  network.target
    Wants=network.target
    
    [Service]
    Type=simple
    ExecStart=/root/frpc/frpc -c /root/frpc/frpc.ini #启动命令根据自己情况填写目录
    Restart= always
    RestartSec=1min
    ExecStop=/usr/bin/killall frpc
    
    
    [Install]
    WantedBy=multi-user.target
  • 相关命令

    systemctl enable frpc(frps) #设置开机启动
    systemctl start frpc(frps) #启动
    systemctl stop frpc(frps) #停止
    systemctl status frpc(frps) #状态
Theme Jasmine by Kent Liao