这里以启动frp客户端为例
创建服务service文件
vi /etc/systemd/system/frpc.service
内容如下:
[Unit]
Description=frp client
StartLimitIntervalSec=0
[Service]
Type=simple
Restart=always
RestartSec=1
User=root
ExecStart=/usr/local/frpc/frpc -c /usr/local/frpc/frpc.toml
[Install]
WantedBy=multi-user.target
配置详解
启动服务
systemctl start frpc.service
停止服务
systemctl stop frpc.service
重新启动服务
systemctl restart frpc.service
设置开启自启动
systemctl enable frpc.service
配置更新
当修改了.services配置文件需要重启服务时,可以使用下面命令
systemctl daemon-reload
错误排查
使用journalctl -xe
命令查看具体的日志
参考
正文完