对于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将保持为空.