mysql备份
mysqldump -uroot -p111111 test > ~/mysqlBak/test`date "+%Y%m%d%H%M%S"`.sql
cron编辑
crontab -e
cron列表
crontab -l
cron表达式
*/1 * * * * ~/command/mysqlBack
分钟 小时 日 月 周 命令
和quarz不一样
cron 停止
systemctl stop crond
cron启动
systemctl start crond
cron 状态
systemctl status crond
cron自启动
systemctl enable crond.service