Home  >  Article  >  Backend Development  >  cron不执行,该如何处理

cron不执行,该如何处理

WBOY
WBOYOriginal
2016-06-13 13:33:43995browse

cron不执行,急急急
FREEBSD   系统:
写了一个备份数据库的文件 'mysqlbak '
文件内容:
Tbt=`date       +%Y_%m_%d_%H%M%S`
mysqldump   -uttt   -pttt   ttt   --default-character-set=gb2312> /8799/uujia_$Tbt.sql

直接输入mysqlbak能执行这个备份,
但是在cron下就无法执行,不知道是什么原因,请大家帮我分析一下。
我是这样建立计划crontab   的。
crontab   -e  
*/1           *               *               *               *                 runmysqlbak

在先等待

------解决方案--------------------
都 加上绝对路径.
------解决方案--------------------
*/1 * * * * /usr/local/etc/mysqlbak.sh

另外,你的备份脚本中的 mysqldump 要用绝对路径:
/usr/local/bin/mysqldump -uttt -pttt ................................

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn