一,准备好shell脚本
二,定期执行 把shell放到crontab里面。 #查看crond是否已启动 [root@BlackGhost cron]# ps -e|grep crond 21519 ? 00:00:00 crond #打开crontab [root@BlackGhost cron]# crontab -e #在里面加上一行 00 18 * * * /home/zhangy/database_bak.sh #查看一下是否已加上 [root@BlackGhost cron]# crontab -l # # DO NOT EDIT THIS FILE MANUALLY!! USE crontab -e INSTEAD. # # <minute> <hour> <day> <month> <dow> <command> 01 * * * * /usr/sbin/run-cron /etc/cron.hourly 02 00 * * * /usr/sbin/run-cron /etc/cron.daily 22 00 * * 0 /usr/sbin/run-cron /etc/cron.weekly 42 00 1 * * /usr/sbin/run-cron /etc/cron.monthly 56 06 * * * /home/zhangy/www/bb.php 51 23 * * * /sbin/shutdown -h now 00 18 * * * /home/zhangy/database_bak.sh 然后退出 (责任编辑:IT) |