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 如何根据日期输出到新的日志文件?
基础教程推荐
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- PHP 守护进程/worker 环境 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01