ARTICLE DETAIL

建站实战干货

来自一线的建站与推广经验沉淀,每一条都经过真实交付验证。

ubuntu 守护进程 supervisor

2026/9/14 22:49:27 拓冰建站 浏览量
ubuntu 守护进程 supervisor
# 安装
apt-get install supervisor# 检查
echo_supervisord_conf# 查看配置文件所在位置
# [include]
# files = /etc/supervisor/conf.d/*.conf
ps -ef | grep supervisorcd /etc/supervisor/conf.d/lscat frp.conf

[program:frp]
command = /data/work/frp/frpc -c /data/work/frp/frpc.ini
autostart = true

#重新加载
sudo supervisorctl rereadsudo supervisorctl update

参考

Linux进程管理工具——supervisor_linux supervisor-CSDN博客