linux supervisorctl 进程守护

2021/6/10 7:25:06

本文主要是介绍linux supervisorctl 进程守护,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

## 安装步骤待补充

 

 

## 配置过程

### 添加文件

cd /etc/supervisord.d
vim skywalking-agent.conf

### 添加配置

[program:skywalking-agent]
command = /usr/local/bin/sky-php-agent --grpc=127.0.0.1:11800 --sky-version=8 --socket=/tmp/sky-agent.sock
autostart = true
startsecs = 5
autorestart = true
startretries = 3
user = root
stdout_logfile = /var/log/supervisor/skywalking-agent.out
stderr_logfile = /var/log/supervisor/skywalking-agent.err

### 更新配置

supervisorctl update

### 查看进程状态

supervisorctl status

### 停止守护

supervisorctl stop skywalking-agent

### 启动守护

supervisorctl start skywalking-agent


这篇关于linux supervisorctl 进程守护的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程