如何使用Laravel Scheduler命令将输出重定向到STDOUT?

时间:2017-10-05 13:30:19

标签: php laravel stdout scheduler

我将调度程序应用程序运行到Docker容器中。

管理Laravel调度程序并将其执行到具有管理程序的容器中(我按照http://veithen.github.io/2015/01/08/supervisord-redirecting-stdout.html管理输出重定向):

[supervisord]
nodaemon = true
loglevel = info
stderr_logfile = /dev/stderr
stderr_logfile_maxbytes = 0
stdout_logfile = /dev/stdout
stdout_logfile_maxbytes = 0
umask = 022
pidfile = /tmp/supervisord.pid,
logfile = /tmp/supervisord.log

[program:scheduler]
directory = /var/www
command = sh -c 'php artisan schedule:run && sleep 60'
autorestart = true
redirect_stderr = true
stdout_logfile = /dev/stdout
stdout_logfile_maxbytes = 0
stderr_logfile = /dev/stderr
stderr_logfile_maxbytes = 0

调整My Kernel.php代码以将输出附加到stdout_logfile:

 $fileCronLog = '/dev/stdout'; 
 $schedule->command('test')->everyMinute()->appendOutputTo($fileCronLog);

test命令只是将字符串转储到STDOUT。

如果我将$ fileCronLog设置为本地存储文件 正确写入文件$ filepath我的命令输出。

但是    $ fileCronLog ='/ dev / stdout';

我看不到我的日志。我也尝试进入容器来查看这个文件,它总是空的。

1 个答案:

答案 0 :(得分:4)

我可能为自己的问题找到了解决方案。 这是资源: https://github.com/moby/moby/issues/19616

通过在Dockerfile中添加此行来运行supervisor:

 RUN ln -sf /proc/1/fd/1 /var/log/laravel-scheduler.log

然后在Laravel app / console / Kernel.php

$fileCronLog = '/var/log/laravel-scheduler.log'; 
$schedule->command('test')->everyMinute()->appendOutputTo($fileCronLog); 

这有所不同:

/var/log/laravel-scheduler.log不应该是/ proc / self / fd / 1的符号链接,

但是/ proc / 1 / fd / 1。

"微妙但非常显着的差异。"