centos7 soft raid每周自动同步的问题
centos7默认是每周日凌晨1点进行raid检查,有点太频繁了。之前redhat老版本时也遇到过这样的问题。
·
之前redhat老版本时也遇到过这样的问题
https://blog.csdn.net/jolly10/article/details/108768360
centos7解决的办法略有不同,记录一下:
centos7默认是每周日凌晨1点进行raid检查,有点太频繁了
[oracle@qht117 data]$ ls /etc/cron*
/etc/cron.deny /etc/crontab
/etc/cron.d:
0hourly raid-check sysstat
/etc/cron.daily:
logrotate man-db.cron mlocate
/etc/cron.hourly:
0anacron
/etc/cron.monthly:
/etc/cron.weekly:
[oracle@qht117 data]$ cat /etc/crontab
SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root
# For details see man 4 crontabs
# Example of job definition:
# .---------------- minute (0 - 59)
# | .------------- hour (0 - 23)
# | | .---------- day of month (1 - 31)
# | | | .------- month (1 - 12) OR jan,feb,mar,apr ...
# | | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
# | | | | |
# * * * * * user-name command to be executed
默认的设置如下:
[root@qht117 ~]# cat /etc/cron.d/raid-check
# Run system wide raid-check once a week on Sunday at 1am by default
0 1 * * Sun root /usr/sbin/raid-check
将其修改为每月的第1个星期六进行检查 :
[root@qht117 ~]# cat /etc/cron.d/raid-check
# Run system wide raid-check once a week on Sunday at 1am by default
#0 1 * * Sun root /usr/sbin/raid-check
#modifyed to once a month on Sat at 1am.
0 1 1-7 * 6 root /usr/sbin/raid-check
重启一下crond服务,让更新生效:
root@qht117 ~]# systemctl restart crond.service
完成!
记录一下:
0 1 1-7 * 6 root /usr/sbin/raid-check好像不起作用,3月7日也会执行
改成下面这个观察一下
58 0 * * Sat root if [ $(date +\%d) -le 7 ]; then /usr/sbin/raid-check; fi
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
已为社区贡献4条内容
所有评论(0)