Key Points
Introduction: Explains why applying security updates on Rocky Linux is essential to reduce vulnerabilities and maintain system stability.
Patch Individual Systems Using Native Linux Tools: Covers how users can manually apply security updates on a single Rocky Linux system using built-in package management tools.
Patch Rocky Linux Systems at Scale: Explains how Patch Manager Plus helps automate, deploy, and monitor security updates across multiple Rocky Linux systems from a central console.
Rocky Linux systems must be regularly updated with security patches to protect against vulnerabilities and ensure reliable operations. Managing these updates manually can result in delayed remediation and increased risk across servers.
Rocky Linux provides native package management tools that allow administrators to apply security updates on individual systems.
Refresh the meta files with the repos enabled on the machine:
sudo yum makecache
To list security available updates:
sudo yum --security check-update
Install security updates
If you want to apply only security-related patches:
sudo yum --security update
This installation commands downloads and installs updates from the repositories available & enabled on the machine.
Patch a specific package
To update a single package:
sudo yum install <package-name>
To update a single package to a specific version:
sudo yum install <package-name>-<version>
Note: The machine should have suitable repos enabled and access to the repositories.
The following steps explain how to apply security updates across multiple Rocky Linux systems and maintain continuous protection using Patch Manager Plus.
Step 1: Ensure Linux security patches are synchronized
Step 2: Scan Rocky Linux systems for missing security updates
Step 3: Deploy security updates to Rocky Linux systems
Step 4: Configure Automated Patch Deployment for security updates
Additional Linux deployment behavior is detailed here: Linux Patch Deployment.
Step 5: Monitor security update status