运维-centos自动更新

yum-cron程序包使您可以自动将yum命令作为 cron作业运行,以检查,下载和应用更新

安装、开机启动

1
2
3
4
yum install yum-cron

systemctl enable yum-cron
systemctl start yum-cron

配置文件

1
2
3
4
# 每日
/etc/yum/yum-cron.conf
# 每小时
/etc/yum/yum-cron-hourly.conf

配置参数

1
2
3
4
5
6
7
8
# 只升级 安全更新
update_cmd = security
# 显示更新信息
update_messages = yes
# 下载更新
download_updates = yes
# 安装更新
apply_updates = yes

查看日志

1
2
cat /var/log/cron | grep yum-daily
cat /var/log/yum.log | grep Updated
您的支持将鼓励我继续创作