Crontab是一个很方便的在unix/linux系统上定时(循环)执行某个任务的程序。
用 service crond status 查看 crond服务状态,如果没有启动则 systemctl start crond.service启动它。
直接编辑crontab文件,vi /etc/crontab,会看到一个crontab的例子:
# Example of job definition:
# .---------------- minute (0 - 59)
# | .------------- hour (0 - 23)
# | | .---------- day of month (1 - 31)
# | | | .------- month (1 - 12) OR jan,feb,mar,apr ...
# | | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
# | | | | |
# * * * * * user-name command to be executed
不指定具体的时间用*号替代,用空格区分时间参数,最后是到时要执行的操作。
如:在每天的下午17:01执行一次reboot重启服务器操作 :
1 17 * * * root reboot
然后重启服务
systemctl restart crond.service
关闭开机启动
systemctl disable crond.service
关闭开机启动
1、配置一个每天自动重启的功能:
如果支持crontab 可直接 crontab -l 查看目前已有的定时任务
如果当前的linux不支持crontab 则需要进行配置:
#安装Crontab yum install vixie-cron crontabs #设置开机启动Crontab chkconfig crond on #启动Crontab service crond start
先列一下现有的Crontab看看:
crontab -l
提示为 no crontab for root
啥也没有,那就添加一条吧:
编辑命令:
crontab –e
按 i 进入编辑模式,输入
30 15 * * * /sbin/reboot
表示 每天下午15:30分重启设备。按ESC 进入命令模式,输入:wq 保存退出。
最后重启crontab,使重启功能生效
service crond restart
完事 收工!
补充:Crontab基本格式: * * * * * command 分 时 日 月 周 命令 第1列表示分钟1~59 每分钟用或者 /1表示 第2列表示小时1~23(0表示0点) 第3列表示日期1~31 第4列表示月份1~12 第5列标识号星期0~6(0表示星期天) 第6列要运行的命令
评论前必须登录!
立即登录 注册