Linux

关注公众号 jb51net

关闭
首页 > 网站技巧 > 服务器 > Linux > linux设置定时任务

linux如何设置定时任务

作者:彼岸笙箫

这篇文章主要介绍了linux如何设置定时任务问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教

linux设置定时任务执行定时脚本

系统定时任务周期:每小时

控制定时任务目录:

/etc/cron.hourly

定时 每小时顺序:

[root@localhost ~]# cd /etc/cron.hourly
[root@localhost cron.hourly]# touch 1.sh
[root@localhost cron.hourly]# chmod +x 1.sh

系统定时任务周期:每一天

控制定时任务目录:

/etc/cron.daily

[root@localhost ~]# cd /etc/cron.daily
[root@localhost cron.hourly]# touch 1.sh
[root@localhost cron.hourly]# chmod +x 1.sh

系统定时任务周期:每一周

控制定时任务目录:

/etc/cron.weekly

[root@localhost ~]# cd /etc/cron.weekly
[root@localhost cron.hourly]# touch 1.sh
[root@localhost cron.hourly]# chmod +x 1.sh

系统定时任务周期:每个月

控制定时任务目录:

/etc/cron.monthly

[root@localhost ~]# cd /etc/cron.monthly
[root@localhost cron.hourly]# touch 1.sh
[root@localhost cron.hourly]# chmod +x 1.sh

设置执行时间

vi /etc/crontab 
00 3 * * * root run-parts /etc/cron.daily

总结

以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。

您可能感兴趣的文章:
阅读全文