添加后台启动
sudo touch /lib/systemd/system/frps.service
sudo chmod /lib/systemd/system/frps.service
sudo vi /lib/systemd/system/frps.service
//插入数据
[Unit]
Description=frps daemon
[Service]
Type=idle
ExecStart=/usr/bin/frp/frps -c /usr/bin/frp/frps.ini #替换成自己的软件解压路径
[Install]
WantedBy=multi-user.target
关闭
ps -aux|grep frp| grep -v grep
root 3600 0.1 0.1 110188 9484 pts/0 Sl 15:04 0:00 ./frpc -c ./frpc.ini
然后kill -9 进程号
kill -9 3600
修改配置重新加载
sudo systemctl daemon-reload
# 启动 frp 并设置开机启动
systemctl start frps
systemctl enable frps
systemctl status frps