# 定时任务分类:
1. crond(crontab) 定时任务软件(软件包 cronie)
2. atd 运行一次
3. anacron 非7*24小时运行的服务器
[root@NEO ~]# rpm -qa cronie
cronie-1.4.4-16.el6_8.2.x86_64
[root@NEO ~]#
[root@NEO ~]# rpm -ql cronie
/etc/cron.d
/etc/cron.d/0hourly
/etc/cron.deny
/etc/pam.d/crond
/etc/rc.d/init.d/crond
/etc/sysconfig/crond
/usr/bin/crontab
/usr/sbin/crond
/usr/share/doc/cronie-1.4.4
/usr/share/doc/cronie-1.4.4/AUTHORS
/usr/share/doc/cronie-1.4.4/COPYING
/usr/share/doc/cronie-1.4.4/ChangeLog
/usr/share/doc/cronie-1.4.4/INSTALL
/usr/share/doc/cronie-1.4.4/README
/usr/share/man/man1/crontab.1.gz
/usr/share/man/man5/crontab.5.gz
/usr/share/man/man8/cron.8.gz
/usr/share/man/man8/crond.8.gz
/var/spool/cron
[root@NEO ~]#
# 系统的定时任务:
/etc/cron.hourly
/etc/cron.daily
/etc/cron.weekly
/etc/cron.monthly
[root@NEO ~]# ll /var/log/messages* /var/log/secure*
-rw------- 1 root root 747970 Apr 6 23:01 /var/log/messages
-rw-------. 1 root root 560162 Mar 10 13:11 /var/log/messages-20190310
-rw-------. 1 root root 1776477 Mar 18 02:54 /var/log/messages-20190318
-rw------- 1 root root 281719 Mar 25 05:09 /var/log/messages-20190325
-rw------- 1 root root 748600 Apr 2 03:01 /var/log/messages-20190402
-rw------- 1 root root 11127 Apr 6 23:12 /var/log/secure
-rw-------. 1 root root 5897 Mar 10 13:20 /var/log/secure-20190310
-rw-------. 1 root root 15581 Mar 18 02:54 /var/log/secure-20190318
-rw------- 1 root root 842 Mar 25 05:19 /var/log/secure-20190325
-rw------- 1 root root 6890 Apr 2 03:10 /var/log/secure-20190402
[root@NEO ~]#
# 用户的定时任务
[root@NEO ~]# crontab -l
no crontab for root # root 用户没有定时任务
[root@NEO ~]# crontab -e
[root@NEO ~]# crontab -l
#oldboy
[root@NEO ~]# ll /var/spool/cron/
total 4
-rw------- 1 root root 8 Apr 7 00:22 root # 刚才创建的那个定时任务
[root@NEO ~]#
# 定时任务的使用:
1) 查看当前是否正在运行
2) 查看 crond 是否开机自启动
[root@NEO ~]# /etc/init.d/crond status
crond (pid 1555) is running…
[root@NEO ~]# ps -ef |grep crond
root 1555 1 0 Apr06 ? 00:00:00 crond # 这个表示定时任务正在运行
root 1719 1625 0 00:37 pts/0 00:00:00 grep --color=auto crond
# 第二列表示 pid (进程号)
[root@NEO ~]# chkconfig |grep crond
crond 0:off 1:off 2:on 3:on 4:on 5:on 6:off
[root@NEO ~]#
1. crontab -e ---> edit ;编辑当前用户的定时任务 ---> 该命令即相当于 编辑 vim /var/spool/cron/root 这个文件 (假设当前是root用户)
1. 有语法检查功能 格式对不对
2. 方便
# 定时任务相关文件及目录
注意:
# 注意: 星期几和日期不要同时加上
# 1. * ---> 每 …;每分钟,每小时 … ; 5个 * 表示每一分钟 (定时任务中最小单位是分钟)
[root@NEO ~]# which ntpdate
/usr/sbin/ntpdate
[root@NEO ~]# /usr/sbin/ntpdate ntp1.aliyun.com # 把这条命令放到 定时任务中
7 Apr 01:54:44 ntpdate[1793]: step time server 120.25.115.20 offset 141.016804 sec
[root@NEO ~]# crontab -e
[root@NEO ~]# crontab -l
#sync time by neo at 20170407
*/3 * * * * /usr/sbin/ntpdate ntp1.aliyun.com
[root@NEO ~]#
[root@NEO ~]# date
Sun Apr 7 02:02:50 CST 2019
[root@NEO ~]# date -s "1year" # 先把系统时间修改掉
Tue Apr 7 02:02:57 CST 2020
[root@NEO ~]# tail -f /var/log/cron
Apr 7 01:59:19 NEO crontab[1799]: (root) LIST (root)
Apr 7 02:00:01 NEO crond[1555]: (root) RELOAD (/var/spool/cron/root)
Apr 7 02:00:01 NEO CROND[1802]: (root) CMD (/usr/sbin/ntpdate ntp1.aliyun.com)
Apr 7 02:00:01 NEO CROND[1803]: (root) CMD (/usr/lib64/sa/sa1 1 1)
Apr 7 02:01:01 NEO CROND[1812]: (root) CMD (run-parts /etc/cron.hourly)
Apr 7 02:01:01 NEO run-parts(/etc/cron.hourly)[1812]: starting 0anacron
Apr 7 02:01:01 NEO anacron[1824]: Anacron started on 2019-04-07
Apr 7 02:01:01 NEO run-parts(/etc/cron.hourly)[1826]: finished 0anacron
Apr 7 02:01:01 NEO anacron[1824]: Jobs will be executed sequentially
Apr 7 02:01:01 NEO anacron[1824]: Normal exit (0 jobs run)
Apr 7 02:03:01 NEO CROND[1849]: (root) CMD (/usr/sbin/ntpdate ntp1.aliyun.com) # 定时任务执行
Apr 7 02:03:07 NEO CROND[1854]: (root) CMD (/usr/sbin/ntpdate ntp1.aliyun.com) # 定时任务执行
[root@NEO ~]# date
Sun Apr 7 02:03:09 CST 2019 # 定时任务执行后,系统时间更新
[root@NEO ~]#
* 07-11 * * * * CMD # 07-11 每分钟运行CMD
00 07-11 * * * CMD # 07-11 每个小时(整点)运行CMD
# 定时任务中出现错误不会有提示
[root@NEO oldboy]# crontab -e
[root@NEO oldboy]# crontab -l |tail -2
* * * * * /bin/echo "NEO" >>/oldboy/oldboy.txt
[root@NEO oldboy]# tail -f /var/log/cron
[root@NEO oldboy]# tail -f oldboy.txt
5.1 查看定时任务的日志
5.2 命令是否执行成功
# 1. 定时任务规则之前加上注释 --- 谁在什么时间做什么
2.1 超过两条命令,都使用脚本
2.2 脚本:命令的集合,命令大礼包
定时任务中的 % 会被认为是一个 回车;想要去除 定时任务中 % 的回车,需要用到 \\ ,如: date 中的 \\%F 和 \\%T
所以 定时任务中 尽量用 脚本(能避免 坑)
如: tar zcf # 用这个,
tar zcvf # 不要用加 v 的 这个
1. \* \* \* \* \* echo oldboy >>oldboy.log #\*\* oldboy.log 要用绝对路径
2. 用户的定时任务中,默认存放 在当前用户的 家目录
3. 系统的定时任务,是存放在根目录下
[root@NEO oldboy]# date +%F
2019-04-07
[root@NEO oldboy]# mkdir -p /server/scripts
[root@NEO oldboy]# vim /server/scripts/show_date.sh
[root@NEO oldboy]# cat /server/scripts/show_date.sh
date +%F
[root@NEO oldboy]# /server/scripts/show_date.sh # 运行脚本 的方法
-bash: /server/scripts/show_date.sh: Permission denied # 执行失败的原因是该脚本没有执行权限
[root@NEO oldboy]# ll /server/scripts/show_date.sh
-rw-r--r-- 1 root root 9 Apr 7 14:30 /server/scripts/show_date.sh
[root@NEO oldboy]# sh /server/scripts/show_date.sh ### 以后手动执行脚本主要就是用 sh 命令 (sh 是命令解释器的一种,另一种是 bin/bash ;这两种其实是一样的);通过 "sh + 脚本的名字" 就能解决 执行权限 的问题
[root@NEO oldboy]# ls -l `which sh bash`
-rwxr-xr-x. 1 root root 942200 Mar 23 2017 /bin/bash
lrwxrwxrwx. 1 root root 4 Oct 16 00:36 /bin/sh -> bash # sh 就是一个指向 /bin/bash 的软链接
[root@NEO oldboy]# sh /server/scripts/show_date.sh
2019-04-07
[root@NEO oldboy]# sh /server/scripts/show_date.sh >>/tmp/date.log
[root@NEO oldboy]# cat /tmp/date.log
2019-04-07
[root@NEO oldboy]# crontab -l |tail -2
* * * * * /bin/sh /server/scripts/show_date.sh >>/tmp/date.log # /bin/bash + 脚本的名字
[root@NEO oldboy]#
[root@NEO oldboy]# tail -f /var/log/cron
[root@NEO oldboy]# tail -f /tmp/date.log
2019-04-07
2019-04-07
2019-04-07
2019-04-07
[root@NEO ~]# crontab -l
#sync time by neo at 20170407
*/3 * * * * /usr/sbin/ntpdate ntp1.aliyun.com >/dev/null 2>&1 # 应该定向到黑洞
* * * * * /bin/sh /server/scripts/show_date.sh >>/tmp/date.log 2>&1 # 把前面脚本的执行结果追加到文件中,无论对的还是错的都追加到该文件中
[root@NEO ~]#
[root@NEO ~]# /etc/init.d/postfix status
master (pid 1500) is running…
You have new mail in /var/spool/mail/root
[root@NEO ~]#
[root@NEO ~]# /etc/init.d/postfix stop
Shutting down postfix: [ OK ]
You have new mail in /var/spool/mail/root
[root@NEO ~]# /etc/init.d/postfix stop
[root@NEO ~]# chkconfig postfix off
[root@NEO ~]# chkconfig |grep postfix
postfix 0:off 1:off 2:off 3:off 4:off 5:off 6:off
[root@NEO ~]#
[root@NEO ~]# ll /var/spool/postfix/maildrop/
total 12
-rwxr--r-- 1 root postdrop 499 Apr 7 21:39 16C403F8A7
-rwxr--r-- 1 root postdrop 502 Apr 7 21:42 9CE953F8EC
-rwxr--r-- 1 root postdrop 502 Apr 7 21:36 A1BFC3F899 # 会占用一个 inode
[root@NEO ~]#
[root@NEO ~]# crontab -e
[root@NEO ~]# crontab -l
#sync time by neo at 20170407
*/3 * * * * /usr/sbin/ntpdate ntp1.aliyun.com >/dev/null 2>&1
* * * * * /bin/sh /server/scripts/show_date.sh >>/tmp/date.log 2>&1
[root@NEO ~]#
[root@NEO ~]# date +%F_%w
2019-04-07_0
[root@NEO ~]# ifconfig eth0 |awk -F "[ :]+" 'NR==2{print $4}'
10.0.0.200
[root@NEO ~]# vim /server/scripts/ip.sh
[root@NEO ~]# cat /server/scripts/ip.sh
date +%F_%w
ifconfig eth0 |awk -F "[ :]+" 'NR==2{print $4}'
[root@NEO ~]# /bin/sh /server/scripts/ip.sh
2019-04-07_0
10.0.0.200
[root@NEO ~]# /bin/sh /server/scripts/ip.sh >>/tmp/ip.log
[root@NEO ~]# cat /tmp/ip.log
2019-04-07_0
10.0.0.200
[root@NEO ~]# crontab -e
[root@NEO ~]# crontab -l|tail -2
* * * * * /bin/sh /server/scripts/ip.sh >>/tmp/ip.log 2>&1
[root@NEO ~]# tail -f /var/log/cron
Apr 7 23:14:01 NEO CROND[2329]: (root) CMD (/bin/sh /server/scripts/show_date.sh >>/tmp/date.log 2>&1)
Apr 7 23:15:01 NEO CROND[2334]: (root) CMD (/usr/sbin/ntpdate ntp1.aliyun.com >/dev/null 2>&1)
Apr 7 23:15:01 NEO CROND[2335]: (root) CMD (/bin/sh /server/scripts/show_date.sh >>/tmp/date.log 2>&1)
Apr 7 23:16:01 NEO CROND[2340]: (root) CMD (/bin/sh /server/scripts/show_date.sh >>/tmp/date.log 2>&1)
Apr 7 23:16:10 NEO crontab[2326]: (root) REPLACE (root)
Apr 7 23:16:10 NEO crontab[2326]: (root) END EDIT (root)
Apr 7 23:16:21 NEO crontab[2343]: (root) LIST (root)
Apr 7 23:17:01 NEO crond[1541]: (root) RELOAD (/var/spool/cron/root)
Apr 7 23:17:01 NEO CROND[2347]: (root) CMD (/bin/sh /server/scripts/show_date.sh >>/tmp/date.log 2>&1)
Apr 7 23:17:01 NEO CROND[2348]: (root) CMD (/bin/sh /server/scripts/ip.sh >>/tmp/ip.log 2>&1)
[root@NEO ~]# tail -f /tmp/ip.log
2019-04-07_0
10.0.0.200
2019-04-07_0
/server/scripts/ip.sh: line 2: ifconfig: command not found
2019-04-07_0
/server/scripts/ip.sh: line 2: ifconfig: command not found # 命令找不到的原因: PATH 环境变量的问题
[root@NEO ~]# vim /server/scripts/ip.sh
[root@NEO ~]# cat /server/scripts/ip.sh
date +%F_%w
/sbin/ifconfig eth0 |awk -F "[ :]+" 'NR==2{print $4}'
[root@NEO ~]#
[root@NEO ~]# tailf /tmp/ip.log
2019-04-07_0
/server/scripts/ip.sh: line 2: ifconfig: command not found
2019-04-07_0
/server/scripts/ip.sh: line 2: ifconfig: command not found
2019-04-07_0
/server/scripts/ip.sh: line 2: ifconfig: command not found
2019-04-07_0
/server/scripts/ip.sh: line 2: ifconfig: command not found
2019-04-07_0
10.0.0.200
2019-04-07_0
10.0.0.200 # ifconfig 命令就能正常运行
[root@NEO ~]# which ifconfig ntpdate
/sbin/ifconfig
/usr/sbin/ntpdate
[root@NEO ~]#
1. 命令使用绝对路径
2. 在脚本开头重新定义一下 PATH ,如: export PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin
JAVA tomcat 里面一般需要重新定义 PATH 环境变量
# 记忆:
/bin /sbin # /
/usr/bin /usr/sbin # /usr
/usr/local/bin /usr/local/sbin # /usr/local
# 某个目录有大量小文件,删除方法:
# 1. ls |xargs rm
# 2. 删除文件所在的目录(删除之前记录好权限和所有者)
[root@NEO oldboy]# mkdir -p /test
[root@NEO oldboy]# cd /test
[root@NEO test]# ll
total 0
[root@NEO test]# touch {1..500000}.txt
-bash: /bin/touch: Argument list too long # 创建文件太多,报错;解决办法如下:
[root@NEO test]# echo {1..500000}.txt |xargs touch # 创建大量文件
[root@NEO test]# df -i
Filesystem Inodes IUsed IFree IUse% Mounted on
/dev/sda3 593344 555467 37877 94% /
tmpfs 60748 1 60747 1% /dev/shm
/dev/sda1 51200 39 51161 1% /boot
[root@NEO test]# ls |wc -l
500000
[root@NEO test]# pwd
/test
[root@NEO test]# \rm -f *
-bash: /bin/rm: Argument list too long # 文件太多,直接删除也会报错;解决办法: 交给 |xargs 删除: ls |xargs \rm -f
[root@NEO test]# ls |xargs \rm -f
[root@NEO test]# ll
total 0
手机扫一扫
移动阅读更方便
你可能感兴趣的文章