如何使用 yum-cron 自动更新 RHEL/CentOS Linux | Linux 中国我知道如何使用 yum 命令行 更新系统,但是我想用 cron 任务自动更新软件包。-- Vivek Gite

有用的原文链接请访问文末的“原文链接”获得可点击的文内链接、全尺寸原图和相关文章。

致谢编译自 | https://www.cyberciti.biz/faq/fedora-automatic-update-retrieval-installation-with-cron/ 
 作者 | Vivek Gite
 译者 | shipsw ? ? 共计翻译:10 篇 贡献时间:1399 天

yum 命令是 RHEL / CentOS Linux 系统中用来安装和更新软件包的一个工具。我知道如何使用 yum 命令行[1] 更新系统,但是我想用 cron 任务自动更新软件包。该如何配置才能使得 yum 使用 cron 自动更新[2]系统补丁或更新呢?

首先需要安装 yum-cron 软件包。该软件包提供以 cron 命令运行 yum 更新所需的文件。如果你想要每晚通过 cron 自动更新可以安装这个软件包。

CentOS/RHEL 6.x/7.x 上安装 yum cron

输入以下 [yum 命令][3]:


  1. $ sudo yum install yum-cron

如何使用 yum-cron 自动更新 RHEL/CentOS Linux | Linux 中国

使用 CentOS/RHEL 7.x 上的 systemctl 启动服务:


  1. $ sudo systemctl enable yum-cron.service

  2. $ sudo systemctl start yum-cron.service

  3. $ sudo systemctl status yum-cron.service

在 CentOS/RHEL 6.x 系统中,运行:


  1. $ sudo chkconfig yum-cron on

  2. $ sudo service yum-cron start

如何使用 yum-cron 自动更新 RHEL/CentOS Linux | Linux 中国

yum-cron 是 yum 的一个替代方式。使得 cron 调用 yum 变得非常方便。该软件提供了元数据更新、更新检查、下载和安装等功能。yum-cron 的各种功能可以使用配置文件配置,而不是输入一堆复杂的命令行参数。

配置 yum-cron 自动更新 RHEL/CentOS Linux

使用 vi 等编辑器编辑文件 /etc/yum/yum-cron.conf 和 /etc/yum/yum-cron-hourly.conf


  1. $ sudo vi /etc/yum/yum-cron.conf

确保更新可用时自动更新:


  1. apply_updates = yes

可以设置通知 email 的发件地址。注意: localhost将会被system_name` 的值代替。


  1. email_from = [email protected]

列出发送到的 email 地址。


  1. email_to = your-it-[email protected]-domain-name

发送 email 信息的主机名。


  1. email_host = localhost

[CentOS/RHEL 7.x][4] 上不想更新内核的话,添加以下内容:


  1. exclude=kernel*

RHEL/CentOS 6.x 下添加以下内容来禁用内核更新[3]


  1. YUM_PARAMETER=kernel*

保存并关闭文件[4]。如果想每小时更新系统的话修改文件 /etc/yum/yum-cron-hourly.conf,否则文件 /etc/yum/yum-cron.conf 将使用以下命令每天运行一次(使用 cat 命令[5] 查看):


  1. $ cat /etc/cron.daily/0yum-daily.cron

示例输出:


  1. #!/bin/bash

  2. # Only run if this flag is set. The flag is created by the yum-cron init

  3. # script when the service is started -- this allows one to use chkconfig and

  4. # the standard "service stop|start" commands to enable or disable yum-cron.

  5. if [[ ! -f /var/lock/subsys/yum-cron ]]; then

  6. exit 0

  7. fi

  8. # Action!

  9. exec /usr/sbin/yum-cron /etc/yum/yum-cron-hourly.conf

  10. [[email protected]-box yum]# cat /etc/cron.daily/0yum-daily.cron

  11. #!/bin/bash

  12. # Only run if this flag is set. The flag is created by the yum-cron init

  13. # script when the service is started -- this allows one to use chkconfig and

  14. # the standard "service stop|start" commands to enable or disable yum-cron.

  15. if [[ ! -f /var/lock/subsys/yum-cron ]]; then

  16. exit 0

  17. fi

  18. # Action!

  19. exec /usr/sbin/yum-cron

完成配置。现在你的系统将每天自动更新一次。更多细节请参照 yum-cron 的说明手册。


  1. $ man yum-cron

关于作者

作者是 nixCraft 的创始人,一个经验丰富的系统管理员和 Linux/Unix 脚本培训师。他曾与全球客户合作,领域涉及IT,教育,国防和空间研究以及非营利部门等多个行业。请在 Twitter[6]Facebook[7]Google+[8] 上关注他。获取更多有关系统管理、Linux/Unix 和开源话题请关注我的 RSS/XML 地址[9]


via: https://www.cyberciti.biz/faq/fedora-automatic-update-retrieval-installation-with-cron/

作者:Vivek Gite[11] 译者:shipsw 校对:wxy

本文由 LCTT 原创编译,Linux中国 荣誉推出

[3]:https://www.cyberciti.biz/faq/rhel-centos-fedora-linux-yum-command-howto/[4]:https://www.cyberciti.biz/faq/yum-update-except-kernel-package-command/


相关文章:

  • 2022-01-11
  • 2022-12-23
  • 2022-12-23
  • 2021-07-19
  • 2022-12-23
  • 2021-10-17
  • 2022-12-23
猜你喜欢
  • 2022-01-07
  • 2021-12-25
  • 2022-02-16
  • 2022-02-22
  • 2021-12-31
  • 2021-12-17
  • 2021-12-31
相关资源
相似解决方案