What is yum-cron ?

What is yum-cron ?

Solution Verified - Updated -

Environment

  • Red Hat Enterprise Linux Server 6.x
  • Red Hat Enterprise Linux Server 7.x

Issue

  • The yum-cron package provides a convenient way to check for, download and apply updates automatically.
  • The cron jobs from the yum-cron package are active immediately after installing the package and there’s no extra configuration necessary. The job will be run when daily cron jobs are set to run.

Resolution

  • To install yum-cron package
# yum -y install yum-cron
# chkconfig yum-cron on
  • Then edit /etc/sysconfig/yum-cron (RHEL 6) to set MAILTO= email address or /etc/yum/yum-cron.conf (RHEL 7) to set email_to= for email notifications.

    • For RHEL 6
MAILTO=sys@example.com
  • For RHEL 7
email_to=sys@example.com
  • To exclude packages using yum-cron:-
  • For RHEL 6
YUM_PARAMETER=kernel* mysql*
  • For RHEL 7 edit below option in the base section of /etc/yum/yum-cron.conf file.
[base]
exclude=kernel* mysql*
  • For RHEL 7 use following option in yum-cron configuration file to install security updates.
[commands]
#  What kind of update to use:
# default                            = yum upgrade
# security                           = yum --security upgrade
# security-severity:Critical         = yum --sec-severity=Critical upgrade
# minimal                            = yum --bugfix upgrade-minimal
# minimal-security                   = yum --security upgrade-minimal
# minimal-security-severity:Critical =  --sec-severity=Critical upgrade-minimal
update_cmd = security
  • To start yum-cron service after editing configuration file.

  • For RHEL 6

# service yum-cron start
  • For RHEL 7
# systemctl start yum-cron
  • Component
  • yum
0 (0)
Article Rating (No Votes)
Rate this article
Attachments
There are no attachments for this article.
Comments
There are no comments for this article. Be the first to post a comment.
Full Name
Email Address
Security Code Security Code
Related Articles RSS Feed
Exclude multiple files and directories with rsync
Viewed 3369 times since Wed, Oct 31, 2018
How to convert RAW image to VDI and otherwise
Viewed 16225 times since Wed, Oct 3, 2018
Tilix: Advanced Tiling Terminal Emulator for Power Users
Viewed 8365 times since Thu, Apr 18, 2019
SSH Essentials: Working with SSH Servers, Clients, and Keys
Viewed 5847 times since Wed, Jun 27, 2018
Enabling or disabling a repository using Red Hat Subscription Management
Viewed 14251 times since Mon, Oct 29, 2018
Tcpdump Examples Linux
Viewed 7157 times since Fri, Nov 16, 2018
CONFIGURE OCFS2
Viewed 9548 times since Sat, Jun 2, 2018
Install Security Patches or Updates Automatically on CentOS and RHEL
Viewed 2767 times since Fri, Oct 26, 2018
Prosty skaner portów TCP w bash
Viewed 4094 times since Thu, May 24, 2018
How To Run Multiple SSH Command On Remote Machine And Exit Safely
Viewed 5774 times since Tue, Aug 6, 2019