我在 docker 容器中有 php-fpm,在Dockerfile
我编辑 fpm 配置文件 ( /etc/php5/fpm/pool.d/www.conf
) 以设置访问日志/var/log/fpm-access.log
和错误日志/var/log/fpm-php.www.log
:
# Do some php-fpm config
# Redirect worker stdout and stderr into main error log
# Activate the fpm access log
# Enable display errors
# Enable the error log
RUN sed -i '/^;catch_workers_output/ccatch_workers_output = yes' /etc/php5/fpm/pool.d/www.conf && \
sed -i '/^;access.log/caccess.log = /var/log/fpm-access.log' /etc/php5/fpm/pool.d/www.conf && \
sed -i '/^;php_flag\[display_errors\]/cphp_flag[display_errors] = off' /etc/php5/fpm/pool.d/www.conf && \
sed -i '/^;php_admin_value\[error_log\]/cphp_admin_value[error_log] = /var/log/fpm-php.www.log' /etc/php5/fpm/pool.d/www.conf && \
sed -i '/^;php_admin_flag\[log_errors\]/cphp_admin_flag[log_errors] = on' /etc/php5/fpm/pool.d/www.conf
这很好用——我可以将一个外壳放入容器中以查看日志。但是......这不是最佳实践。
问题是当我尝试使用docker 日志收集器时- 我需要 php-fpm 记录到 stdout 或 stderr 以便 docker 可以捕获它们并将它们提供给docker logs
命令。
我试图在(这是我从官方 nginx docker imageDockerfile
复制的一个想法)中做到这一点:
# Redirect fpm logs to stdout and stderr so they are forwarded to the docker log collector
RUN ln -sf /dev/stdout /var/log/fpm-access.log && \
ln -sf /dev/stderr /var/log/fpm-php.www.log
这不起作用 - 没有看到任何访问日志docker logs
- 我试图找出原因?在 docker 中使用 fpm 的其他人是否设法让日志记录工作到 docker 日志收集器?
好的,这样做的方法是将错误和访问日志发送到以下地址:
补充
php5-fpm.log
:注意:
access.log
是正确的,在此页面中找到https://www.php.net/manual/en/install.fpm.configuration.php请注意,最新版本的官方PHP fpm docker 映像的fpm 配置中的烘焙写入标准流:
PHP-FPM 日志只会出现在 STDERR 中 - 因此您可以根据需要将其符号链接
fpm.log
到/dev/stderr
。