Supervisord和stdout / stderr

前端之家收集整理的这篇文章主要介绍了Supervisord和stdout / stderr前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
对于Supervisord中的程序配置块,如果redirect_stderr为true,是否需要设置stderr_logfile?
stderror_logfile=/path/to/logfile/stderr.log
stdout_logfile=/path/to/logfile/stdout.log
redirect_stderr=true

由于redirect_stderr为true,这应该意味着stderr.log将为空,并且stderr和stdout流的组合将显示在sdtout.log中.我的理解是否正确?

解决方法

引用Supervisord配置文件文档:

redirect_stderr@H_301_14@ If true,cause the process’ stderr output to be sent back to supervisord on its stdout file descriptor (in UNIX shell terms,this is the equivalent of executing /the/program 2>&1).

stderr_logfile@H_301_14@ Put process stderr output in this file unless redirect_stderr is true.

然后是的,stderr和stdout都会出现在stdout.log中,而stderr.log将保持为空.

原文链接:https://www.f2er.com/linux/399073.html

猜你在找的Linux相关文章