生成supervisor配置文件
echo_supervisord_conf > supervisord.conf
vi supervisord.conf
[inet_http_server] ;HTTP服务器,提供web管理界面
port=127.0.0.1:9001 ;Web管理后台运行的IP和端口,如果开放到公网,需要注意安全性
username=user ;登录管理后台的用户名
password=123 ;登录管理后台的密码
[program:logstash]
environment=LS_HEAP_SIZE=5000m
directory=/home/logstash/logstash-5.6.3
command=/home/logstash/logstash-5.6.3/bin/logstash -f /home/logstash/logstash-5.6.3/config/logstash.conf -w 10 -l /home/logstash/logstash-5.6.3/logs; 程序启动命令
[program:xx]
......
启动supervisor
supervisord -c supervisord.conf
用supervisorctl或web界面即可管理进程
技术分享离不开您的支持,您的支持是我源源不断的动力。