gpt4 book ai didi

php - 无法使用 docker 查看 STDERR 输出

转载 作者:行者123 更新时间:2023-12-02 00:35:10 25 4
gpt4 key购买 nike

我正在运行一个 php docker 镜像 (php:5.6-apache),它使用符号链接(symbolic link)分别将 apache 的错误和访问日志重定向到 STDERR 和 STDOUT。

当我在前台运行 docker 镜像或访问 docker 容器日志时,我可以看到 STDOUT 输出。但我没有看到任何错误(即使我生成 php 错误)。

知道这是为什么以及如何解决它吗?

我正在运行 Mac 版 docker(但我认为这没有任何区别)

谢谢

access.log -> /dev/stdout
error.log -> /dev/stderr
other_vhosts_access.log -> /dev/stdout

编辑/解决:正如 @BMitch 在下面提到并证明的那样,STDERR 重定向工作正常。问题出在 PHP 配置上。如果我使用 error_log() 记录错误,它将输出到日志中。但是如果我有一个 php 错误,比如调用一个未定义的函数,该错误永远不会出现在日志中。这似乎有点不一致。无论如何,...

我必须在 /usr/local/etc/php/ 中创建一个 php.ini 文件并添加这两个参数:

log_errors = On
error_log = /var/log/apache2/error.log

然后重新启动 docker 容器。这导致所有 PHP 错误被记录并输出到 STDERR。有关示例,请参阅@German 的答案。

最佳答案

我无法重现您的情况。如果以下内容没有帮助,请提供 mcve你的错误。

基本 Dockerfile:

$ cat Dockerfile 
FROM php:5.6-apache
COPY . /var/www/html/

唯一的php是这个文件产生错误:

$ cat error.php 
<?
error_log("Hello error log.")
?>

构建并运行它:

$ docker build -t test-php .
Sending build context to Docker daemon 3.072kB
Step 1/2 : FROM php:5.6-apache
---> f16436448ebd
Step 2/2 : COPY . /var/www/html/
---> Using cache
---> cfe66485e2cc
Successfully built cfe66485e2cc
Successfully tagged test-php:latest

$ docker run -p 8080:80 -d --name test-php test-php
7f9a1836a8157963966b583579dff94c6413292547b84d22957add77ad2d8e14

Curl 正如预期的那样为空,但调用它会在日志中生成错误:

$ curl localhost:8080/error.php

显示标准输出日志,将错误重定向到/dev/null:

$ docker logs test-php 2>/dev/null
172.17.0.1 - - [31/May/2017:00:06:37 +0000] "GET /error.php HTTP/1.1" 200 174 "-" "curl/7.38.0"

显示 stderr 日志,将 stdout 重定向到/dev/null

$ docker logs test-php >/dev/null
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message
[Wed May 31 00:06:25.064546 2017] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.10 (Debian) PHP/5.6.30 configured -- resuming normal operations
[Wed May 31 00:06:25.064584 2017] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND'
[Wed May 31 00:06:37.833470 2017] [:error] [pid 17] [client 172.17.0.1:50040] Hello error log.

注意错误输出的最后一行。

关于php - 无法使用 docker 查看 STDERR 输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44254076/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com