frp开机启动

暂时只介绍linux版本的作法,做为备忘。

 

添加systemd配置文件:

vim /usr/lib/systemd/system/frp.service

文件内容以下:linux

[Unit]
Description=The nginx HTTP and reverse proxy server After=network.target remote-fs.target nss-lookup.target [Service] Type=simple ExecStart=/usr/local/frp/frps -c /usr/local/frp/frps.ini KillSignal=SIGQUIT TimeoutStopSec=5 KillMode=process PrivateTmp=true StandardOutput=syslog StandardError=inherit [Install] WantedBy=multi-user.target 

ExecStart的内容请根据本身frp安装目录修改。nginx

设置开机启动

systemctl daemon-reload
systemctl enable frp 

启动 frp

systemctl start frp

查看frp是否启动

ps aux | grep frps

centos7 查看启动服务项vim

使用 systemctl list-unit-files 能够查看启动项 centos

左边是服务名称,右边是状态,enabled是开机启动,disabled是开机不启动ruby

可使用 systemctl status xxx.service查看服务状态

转连接:https://www.jianshu.com/p/f5527d73bca3

bash

相关文章
相关标签/搜索