Database

How to Install MongoDB on RHEL 8 — step-by-step RHEL 8 tutorial on Progressive Robot

How to Install MongoDB on RHEL 8

MongoDB is a leading document-oriented NoSQL database that stores data in flexible JSON-like BSON documents, making it well-suited for applications with evolving schemas, hierarchical data, or high-throughput write workloads. MongoDB is not included in the RHEL 8 AppStream, so you must add the official MongoDB repository before installing. This guide walks through creating the MongoDB […]

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

How to Install PostgreSQL on RHEL 8

PostgreSQL is a powerful, standards-compliant open-source relational database known for its extensibility, advanced data types, and strict ACID compliance. RHEL 8’s AppStream makes multiple PostgreSQL major versions available as installable modules, so you can target a specific release without managing external repositories. This guide demonstrates installing PostgreSQL 13 via the AppStream module system, initialising the […]

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

How to Install MariaDB on RHEL 8

MariaDB is a community-developed, fully open-source relational database management system that was forked from MySQL and remains highly compatible with it. On RHEL 8, MariaDB is conveniently available through the AppStream module system, allowing you to install a specific stream version without adding third-party repositories. This tutorial covers installing MariaDB 10.5 via AppStream, starting and […]

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

How to Install MySQL 8 on RHEL 8

MySQL 8 is one of the most widely deployed relational database systems in the world, offering robust performance, strong security features, and broad application compatibility. On RHEL 8, MySQL is not included in the default AppStream modules, so you must add the official MySQL community repository before installing. This guide walks through adding the MySQL […]

Read more
How to Set Up a LAMP Stack on RHEL 8 — step-by-step RHEL 8 tutorial on Progressive Robot

How to Set Up a LAMP Stack on RHEL 8

A LAMP stack — Linux, Apache, MariaDB, and PHP — is one of the most widely deployed web server configurations in enterprise environments. RHEL 8 ships with the tools needed to install and configure each component using dnf and its module system. This tutorial walks you through installing and securing a fully functional LAMP stack […]

Read more
How to Set Up a LEMP Stack on RHEL 8 — step-by-step RHEL 8 tutorial on Progressive Robot

How to Set Up a LEMP Stack on RHEL 8

A LEMP stack — Linux, Nginx, MySQL (or MariaDB), and PHP — is one of the most common foundations for hosting WordPress, Laravel, and other PHP applications. On RHEL 8, each component is available from the default AppStream repository using module streams, giving you fine-grained control over which PHP version you install without relying on […]

Read more
How to Configure HAProxy for HTTP and TCP Load Balancing on RHEL 8 — step-by-step RHEL 8 tutorial on Progressive Robot

How to Configure HAProxy for HTTP and TCP Load Balancing on RHEL 8

HAProxy is a battle-tested open-source load balancer and proxy server that can distribute HTTP and raw TCP traffic across multiple backend servers with sub-millisecond overhead. On RHEL 8 it is available directly from the AppStream repository and integrates cleanly with firewalld and SELinux. This guide walks through installing HAProxy, writing a configuration that handles both […]

Read more
How to Set Up Varnish Cache as a Reverse Proxy on RHEL 8 — step-by-step RHEL 8 tutorial on Progressive Robot

How to Set Up Varnish Cache as a Reverse Proxy on RHEL 8

Varnish Cache is a high-performance HTTP accelerator designed to sit in front of web servers and serve cached responses at near-wire speed, offloading PHP and database work from your backend. On RHEL 8, Varnish is packaged in the default AppStream repository, making installation straightforward. This guide shows how to install Varnish, write a VCL configuration […]

Read more
How to Configure Apache mod_proxy as a Reverse Proxy on RHEL 8 — step-by-step RHEL 8 tutorial on Progressive Robot

How to Configure Apache mod_proxy as a Reverse Proxy on RHEL 8

Apache’s mod_proxy module turns your existing Apache web server into a fully functional reverse proxy without requiring a second web server like Nginx. This is particularly useful when you already have Apache managing SSL termination, virtual hosts, or authentication, and want to forward traffic to a backend application server such as Tomcat, Node.js, or a […]

Read more
How to Manage System Packages with dnf on RHEL 8 — step-by-step RHEL 8 tutorial on Progressive Robot

How to Manage System Packages with dnf on RHEL 8

DNF (Dandified YUM) is the default package manager on RHEL 8, replacing the older yum command with improved dependency resolution, transaction history, and modular package support through AppStream. Whether you are installing software, managing module streams, or adding third-party repositories like EPEL, dnf is the single tool for the job. This tutorial covers daily package […]

Read more
CHAT