是否像设置一个cum作业一样简单 – yy在上午1:00更新?
这是用yum-cron
。 它包含/etc/cron.daily/yum.cron
的cron作业,只有在yum
服务( CentOS 5'extras'repo)或yum-cron
服务(CentOS 6'base'repo)被激活时才会运行:
CentOS 5:
# yum install yum-cron # chkconfig --level 345 yum on # service yum start
CentOS 6:
# yum install yum-cron # chkconfig --level 345 yum-cron on # service yum-cron start
我已经完成了关于如何自动更新redhat / centos的研究,他们中的大多数都build议安装yum-cron,但是对于我来说,我只是试着把一个cronjob放在/etc/crontab
。 这个configuration已经为我做了几个月的工作,为许多服务器,没有一个呃逆
0 1 * * sun root yum -y update
我还设置了一个电子邮件别名,以便当cron发送root @ localhost时,这封邮件被转发到我的个人工作电子邮件。 这样我就知道我们系统中哪些软件包已经更新了
对于内核更新,它有风险,所以它更好地做手动:)