How can cron output to a new log file based on date?(cron 如何根据日期输出到新的日志文件?)
问题描述
我想将 cron 输出记录到一个过时的文件中 — /tmp/log/cron-2014-12-17.log
I'd like to log cron output to a dated file — /tmp/log/cron-2014-12-17.log
$ mkdir /tmp/log
$ chmod 777 /tmp/log
$ ls -lah /tmp/log
drwxrwxrwx 2 root root 4.0K Dec 17 21:51 .
Cron(通过root
用户)
Cron (via root
user)
* * * * * /usr/bin/php /path/to/script.php > /tmp/log/cron-$(date "+%F").log 2>&1
/tmp/log
每分钟后保持为空.
如果我从命令行手动运行脚本,则会创建一个日志文件,并且输出符合预期.
If I run the script manually from command line a log file is created, and output is as expected.
// Running it manually as a CLI works fine, but not as a cron
$ /usr/bin/php /path/to/script.php > /tmp/log/cron-$(date "+%F").log 2>&1
此外,如果我创建一个文件并 chmod 777 它,cron 将 将输出写入这个创建的文件.它只是不会即时创建一个.
Also, if I create a file and chmod 777 it, the cron will write output to this created file. It just won't create one on the fly.
// Let's create it first
$ touch /tmp/log/cron.log
$ chmod 777 /tmp/log/cron.log
// wait for the next minute...
$ tail -f /tmp/log/cron.log
output... output... output...
但这不适用于 /tmp/log/cron-2014-12-17.log
之类的动态名称.
But this doesn't work for dynamic names like /tmp/log/cron-2014-12-17.log
.
我错过了什么?
推荐答案
这将解决您的问题:
0 0 * * * /some/path/to/a/file.php >> /tmp/log/cron-`date +\%F`.log 2>&1
这篇关于cron 如何根据日期输出到新的日志文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:cron 如何根据日期输出到新的日志文件?
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- PHP - if 语句中的倒序 2021-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- PHP foreach() 与数组中的数组? 2022-01-01