Home>Article>Operation and Maintenance> An in-depth analysis of the system task settings of Linux study notes
This article brings you relevant knowledge about system task settings in Linux, including issues related to the system startup process, system services, self-starting services and scheduled tasks. I hope it will be helpful to everyone.
All The files are all soft links (shortcuts), and the link address is /etc/init.
##chkconfig
chmod a-x rc.local
vi schoolntpdate.sh
#!/bin/bash #chkconfig:2345 88 99 #description:schoolntpdate.sh ## 开机自启动同步时间 yum info ntp && ntpdate cn.ntp.org.cn
chmod a+x schoolnptdate.sh
cp schoolntpdate.sh /etc/init.d/
chkconfig --add /etc/init.d/schoolntpdate.sh
systemctl status crond.service
crontab -e
星 星 星 星 星 command 分 时 日 月 周 命令 第一列表示分钟1~59 每分钟用*或者*/1表示 第二列表示小时1~23(0表示0点) 第三列表示日期1~31 第四列表示月份1~12 第五列标识号星期0~6(0表示星期天) 第六列表示要运行的命令 *: 表示任何时间都,实际上就是“每”的意思。可以代表00-23小时或者00-12每月或者00-59分 -: 表示区间,是一个范围,00 17-19 * * * cmd,就是每天17,18,19的整点执行命令 ,: 是分割时段,30 3,19,21 * * * cmd,就是每天凌晨3和晚上19,21的半点时刻执行命令 /n: 表示分割,可以看成除法,*/5 * * * * cmd,每隔五分钟执行一次
30 21 * * * /usr/local/rc.d/Lighttpd restart #上面的例子表示每晚21:30重启apache 45 4 1,10,22 * * /usr/local/rc.d/Lighttpd restart #上面的例子表示每月1,10,22日的4:45重启apache 10 1 * * 6,0 /usr/local/rc.d/Lighttpd restart #上面的例子表示周六、周日的1:10重启apache 0,30 18-23 * * * /usr/local/rc.d/Lighttpd restart #上面的例子表示每天的18:00至23:0每隔30分钟重启apache 0 23 * * 6 /usr/local/rc.d/Lighttpd restart #上面的例子表示每星期六的11:00重启apache * */2 * * * /usr/local/rc.d/Lighttpd restart #上面的例子表示每两小时重启apache * 23-7/1 * * * /usr/local/rc.d/Lighttpd restart #上面的例子表示晚上的11点到早上的7点之间,每隔一小时重启apache 0 21 4 * mon-wed /usr/local/rc.d/Lighttpd restart #上面的例子表示每月的4号与每周一到周三的11点重启apache 0 4 1 jan * /usr/local/rc.d/Lighttpd restart #上面的例子表示一月一号的4:00重启apache --(功能描述:显示年月日时分秒) date "+%Y %m %d %H %M %S"
systemctl restart crond.service
vi /var/spool/mail/root
crontab -r
#!/bin/bash dname=`date "+%Y%m%d%H%M%S"` mkdir -p ~/$dname
crontab -e #编辑定时任务
systemctl restart crond.service #重启生效
crontab -l #查看当前的定时任务
Related recommendations: "Linux Video Tutorial"
0 | ##halt (shut down) |
1 | Single user mode |
2 | Multiuser, without NFS (multi-user mode, but no network status) FS-->FileSystem |
Full multiuser mode (multi-user full version mode) | |
unused (reserved mode) | |
X11 (User Interface Mode) | |
reboot (restart mode) |
The above is the detailed content of An in-depth analysis of the system task settings of Linux study notes. For more information, please follow other related articles on the PHP Chinese website!