mysqldump 在 crontab 中不起作用
我正在尝试在备份 mysql 数据库的 crontab(ubuntu 服务器)中添加一个 cronjob.
I'm trying to add a cronjob in the crontab (ubuntu server) that backups the mysql db.
以 root 身份在终端中执行脚本效果很好,但插入到 crontab 中没有任何反应.我试图每分钟运行一次,但文件夹/var/db_backups 中没有出现任何文件.
Executing the script in the terminal as root works well, but inserted in the crontab nothing happens. I've tried to run it each minutes but no files appears in the folder /var/db_backups.
(其他定时任务运行良好)
(Other cronjobs work well)
这是cronjob:
* * * * * mysqldump -u root -pHERE 这是我的密码--all-databases |gzip >/var/db_backups/database_`date +%d%m%y`.sql.gz
* * * * * mysqldump -u root -pHERE THERE IS MY PASSWORD --all-databases | gzip > /var/db_backups/database_`date +%d%m%y`.sql.gz
可能是什么问题?
推荐答案
你需要用
mysqldump -u 'username' -p'password' DBNAME > /home/eric/db_backup/liveDB_`date +\%Y\%m\%d_\%H\%M`.sql
相关文章