2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

apacheのエラーログがstderrには出せずstdoutには出せた話

Last updated at Posted at 2021-11-04

現象

Dockerで動かしているapache(※)のエラーログをDocker Logsに出したかったので、以下のように標準エラー出力するように設定したがDocker Logsに出力されない。

ErrorLog /dev/stderr

一方、標準出力を指定するとDocker Logsに出力される。

ErrorLog /dev/stdout

※httpdイメージは使っておらず、CentOSイメージの中でインストールしたapache

調査結果

httpdプロセスの fd/2 がttyではなくログファイルを向いていた。

# ls -l /proc/1/fd
total 0
lrwx------ 1 root root 64 Nov  3 14:53 0 -> /dev/pts/0
lrwx------ 1 root root 64 Nov  3 14:53 1 -> /dev/pts/0
l-wx------ 1 root root 64 Nov  3 14:53 2 -> /var/log/httpd/error_log
以下省略

補足情報

PHPのエラーは以下の設定でDocker Logsに出力できた。

ini_set('error_log', 'php://stderr');

CGI版のphpであればphp.iniの設定で出せるかもしれない?

display_errors = stderr
2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?