Capacity Planning

How to Install and Configure AIDE on RHEL 8 — step-by-step RHEL 8 tutorial on Progressive Robot

How to Install and Configure AIDE on RHEL 8

AIDE (Advanced Intrusion Detection Environment) is a host-based intrusion detection tool that detects unauthorized changes to files and directories by comparing a live system snapshot against a baseline database. On RHEL 8, AIDE is available directly from the standard repositories and integrates cleanly with systemd for scheduled integrity checks. Detecting modified binaries, configuration files, or […]

Read more
How to Install ClamAV Antivirus on RHEL 8 — step-by-step RHEL 8 tutorial on Progressive Robot

How to Install ClamAV Antivirus on RHEL 8

ClamAV is an open-source antivirus engine widely used on Linux servers to scan for malware in email attachments, uploaded files, and shared storage directories. Although Linux malware is less common than its Windows counterpart, RHEL 8 servers often act as intermediaries that receive and redistribute files to mixed-OS environments, making antivirus scanning an important layer […]

Read more
How to Set Up a Local Container Registry with Harbor on RHEL 8 — step-by-step RHEL 8 tutorial on Progressive Robot

How to Set Up a Local Container Registry with Harbor on RHEL 8

Harbor is an enterprise-grade, open-source container registry that extends the base OCI registry specification with role-based access control, project isolation, image vulnerability scanning powered by Trivy, and cross-datacenter image replication. Running your own Harbor instance on RHEL 8 gives your team a private, auditable registry with no bandwidth costs or rate-limiting imposed by Docker Hub. […]

Read more
How to Set Up Vagrant and VirtualBox on RHEL 8 — step-by-step RHEL 8 tutorial on Progressive Robot

How to Set Up Vagrant and VirtualBox on RHEL 8

Vagrant is a command-line tool for building and managing reproducible virtual machine environments, and when paired with VirtualBox it gives developers a fast, portable way to spin up isolated Linux VMs on a RHEL 8 host. Using a declarative Vagrantfile, you can define the base box, network settings, shared folders, and provisioning scripts so that […]

Read more
How to Install Nexus Repository Manager on RHEL 8 — step-by-step RHEL 8 tutorial on Progressive Robot

How to Install Nexus Repository Manager on RHEL 8

Nexus Repository Manager by Sonatype is a universal artifact repository that proxies public registries, hosts private packages, and groups repositories behind a single URL for Maven, npm, PyPI, Docker, and many other formats. Installing it on RHEL 8 gives your CI/CD pipeline a central artifact store that reduces external network calls and enforces governance over […]

Read more
How to Install GitLab CE on RHEL 8 — step-by-step RHEL 8 tutorial on Progressive Robot

How to Install GitLab CE on RHEL 8

GitLab Community Edition is a full-featured, self-hosted DevOps platform combining Git repository management, issue tracking, CI/CD pipelines, and a container registry in a single application. Running GitLab CE on RHEL 8 gives you complete control over your source code and pipeline infrastructure without relying on third-party SaaS providers. This tutorial covers installing GitLab CE from […]

Read more
How to Monitor Kubernetes with Prometheus and Grafana on RHEL 8 — step-by-step RHEL 8 tutorial on Progressive Robot

How to Monitor Kubernetes with Prometheus and Grafana on RHEL 8

Prometheus and Grafana are the de facto standard observability stack for Kubernetes, providing metrics collection, long-term storage, alerting, and rich dashboarding in a single integrated solution. The kube-prometheus-stack Helm chart bundles Prometheus, Grafana, Alertmanager, and a comprehensive set of pre-built Kubernetes dashboards and alert rules into a single deployment that takes minutes to install. This […]

Read more
How to Configure Kubernetes RBAC on RHEL 8 — step-by-step RHEL 8 tutorial on Progressive Robot

How to Configure Kubernetes RBAC on RHEL 8

Role-Based Access Control (RBAC) is the primary authorization mechanism in Kubernetes, allowing you to define exactly which users and service accounts can perform which actions on which resources. On RHEL 8 clusters this is especially important when multiple teams share the same cluster or when you need to grant applications only the permissions they need […]

Read more
How to Configure Kubernetes Persistent Volumes and Storage Classes on RHEL 8 — step-by-step RHEL 8 tutorial on Progressive Robot

How to Configure Kubernetes Persistent Volumes and Storage Classes on RHEL 8

Stateful applications running in Kubernetes — databases, content management systems, message queues — need storage that persists beyond the lifecycle of any individual pod. Kubernetes solves this through two complementary abstractions: PersistentVolumes (PV), which represent actual storage capacity provisioned by an administrator or a storage provider, and PersistentVolumeClaims (PVC), which are requests for storage made […]

Read more
How to Manage Docker Images and Containers on RHEL 8 — step-by-step RHEL 8 tutorial on Progressive Robot

How to Manage Docker Images and Containers on RHEL 8

Day-to-day Docker work revolves around a core set of commands for pulling images from registries, starting and stopping containers, reading logs, and cleaning up unused resources. Mastering these commands on RHEL 8 means you can confidently deploy, debug, and maintain containerized applications without relying on GUI tools. This tutorial covers the full lifecycle from pulling […]

Read more
CHAT