crontab - 定時任務 我的操作系統版本是CentOS-6 1.查看是否安裝 ...
crontab - 定時任務
我的操作系統版本是CentOS-6
1.查看是否安裝
--定時執行任務 crontab [-u user] file crontab [-u user] [ -e | -l | -r ] --說明沒有安裝 crontab -e -bash: crontab: command not found
2.安裝(如果沒有安裝)
--安裝 --https://blog.csdn.net/testcs_dn/article/details/48781553 --https://linuxtools-rst.readthedocs.io/zh_CN/latest/tool/crontab.html rpm -ivh procmail-3.22-25.1.el6_5.1.x86_64.rpm rpm -ivh hesiod-3.1.0-19.el6.x86_64.rpm rpm -ivh sendmail-8.14.4-8.el6.x86_64.rpm rpm -ivh cronie-1.4.4-16.el6_8.2.x86_64.rpm --nodeps rpm -ivh crontabs-1.10-33.el6.noarch.rpm rpm -ivh cronie-anacron-1.4.4-16.el6_8.2.x86_64.rpm
3.創建執行任務
輸入crontab -e 後,會出現類似vi的界面操作。
任務描述:每一分鐘把當前時間信息追加到/root/test/result.log文件中。
crontab -e * * * * * date >> /root/test/result.log :wq
4.任務結果
cd /root/test/ tail -f result.log [root@node1 test]# tail -f result.log Sun Jan 6 01:42:01 PST 2019 Sun Jan 6 01:43:01 PST 2019 Sun Jan 6 01:44:01 PST 2019
5.服務狀態控制
# service crond start
# service crond stop
# service crond restart
# service crond reload
# service crond status
6.是否開機啟動
--開機啟動 vi /etc/rc.d/rc.local /sbin/service crond start :wq
7.Reference
https://blog.csdn.net/testcs_dn/article/details/48781553
https://linuxtools-rst.readthedocs.io/zh_CN/latest/tool/crontab.html
========================================================
More reading,and english is important.
I'm Hongten
大哥哥大姐姐,覺得有用打賞點哦!你的支持是我最大的動力。謝謝。
Hongten博客排名在100名以內。粉絲過千。
Hongten出品,必是精品。
E | [email protected] B | http://www.cnblogs.com/hongten
========================================================