共计 455 个字符,预计需要花费 2 分钟才能阅读完成。
Linux 设置定时任务
1. 安装 crontab
yum -y install crontabs
2. 开启 crontab 服务
service crond start
service crond start #启动服务
service crond stop #关闭服务
service crond restart #重启服务
service crond reload #重新载入配置
# 查看crontab服务状态
service crond status
3.设置服务是否开机自启动
systemctl list-unit-files | grep crond
如果显示 crond.service disabled
则不是开机自启动的,所以需要设置:
systemctl enable crond.service
systemctl list-unit-files | grep crond
crond.service enabled
结果如上就设置好了。
4. 设置需要执行的脚本
crontab -e
按上面的格式编辑文本,如:
0 2 * * * /root/test.sh
表示在每天2点执行 root 目录下的 test.sh 脚本。
提醒:本文发布于830天前,文中所关联的信息可能已发生改变,请知悉!
AD:【腾讯云服务器大降价】2核4G 222元/3年 1核2G 38元/年
正文完