热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

备份数据库使用带日期功能的crontab-Backupdatabaseusecrontabwithdatefunction

Icanusethiscommand我可以使用这个命令mysqldump-urootmyDB|gzip>mydb_`date+%d-%m-%Y`.sql.gz

I can use this command

我可以使用这个命令

mysqldump -u"root"  myDB| gzip > mydb_`date +%d-%m-%Y`.sql.gz

but when run in crontab

但是在crontab中运行时

* * * * * mysqldump -u"root"  myDB| gzip > mydb_`date +%d-%m-%Y`.sql.gz

( this error cause by function date, when i remove it , crontab run good )

(此错误由函数日期引起,当我删除它时,crontab运行良好)

on ubuntu, it happen this error in log file.

在ubuntu上,它在日志文件中发生此错误。

ubuntu CRON[xxxx] (user) CMD(mysqldump -u"root"  myDB| gzip > mydb_`date+)
ubuntu CRON[xxxx] (CRON) error ( grandchild #5353 failed with exit status 2)
ubuntu CRON[xxxx] (CRON) info (no MTA installed, discarding output)

2 个解决方案

#1


13  

% signs in a crontab command are converted to newlines, and all data after the first % is sent to the command's stdin. Replace each % with \%.

crontab命令中的%符号将转换为换行符,并将第一个%之后的所有数据发送到命令的stdin。用\%替换每个%。

(And you only had 4 time fields: * * * *; you need 5 (you later fixed the question).)

(你只有4个时间段:* * * *;你需要5个(你后来修复了这个问题)。)

#2


0  

From the man 5 crontab:

从男人5 crontab:

The ``sixth'' field (the rest of the line) specifies the command to be run.

“第六”字段(行的其余部分)指定要运行的命令。

The entire command portion of the line, up to a newline or % character, will be executed by /bin/sh or by the shell specified in the SHELL variable of the crontab file.

该行的整个命令部分,直到换行符或%字符,将由/ bin / sh或crontab文件的SHELL变量中指定的shell执行。

Percent-signs (%) in the command, unless escaped with backslash (), will be changed into newline characters, and all data after the first % will be sent to the command as standard input. There is no way to split a single command line onto multiple lines, like the shell's trailing "\".

除非使用反斜杠()进行转义,否则命令中的百分号(%)将更改为换行符,并且第一个%之后的所有数据将作为标准输入发送到命令。无法将单个命令行拆分为多行,例如shell的尾部“\”。


推荐阅读
author-avatar
一根吃兔子的萝卜
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有