RHEL 9

How to Configure PHP-FPM with Nginx on RHEL 9 — step-by-step RHEL 9 tutorial on Progressive Robot

How to Configure PHP-FPM with Nginx on RHEL 9

PHP-FPM (FastCGI Process Manager) is the recommended way to run PHP behind a web server. Unlike the older Apache mod_php, which embeds a PHP interpreter in each Apache worker process, PHP-FPM runs as a separate service that manages a pool of PHP worker processes. Nginx communicates with PHP-FPM via a Unix socket or TCP socket […]

Read more
How to Install Symfony 7 on RHEL 9 — step-by-step RHEL 9 tutorial on Progressive Robot

How to Install Symfony 7 on RHEL 9

Symfony is a mature, enterprise-grade PHP framework built on reusable, decoupled components. Unlike Laravel’s all-in-one approach, Symfony emphasises architectural flexibility — many of its components (HttpFoundation, Console, Validator, Security, DependencyInjection) are used independently by other frameworks including Laravel itself. Symfony’s Dependency Injection Container, event dispatcher, and strict coding standards make it the preferred framework for […]

Read more
How to Install Laravel 11 with Nginx on RHEL 9 — step-by-step RHEL 9 tutorial on Progressive Robot

How to Install Laravel 11 with Nginx on RHEL 9

Laravel is the most popular PHP web application framework, providing an expressive, MVC-based structure with built-in features including Eloquent ORM, Blade templating, database migrations, queues, events, broadcasting, and the Artisan CLI. Laravel follows convention-over-configuration to reduce boilerplate and accelerates development with scaffolding tools like Breeze (authentication starter kit) and Jetstream. This guide covers creating a […]

Read more
How to Install Composer on RHEL 9 — step-by-step RHEL 9 tutorial on Progressive Robot

How to Install Composer on RHEL 9

Composer is the de facto dependency manager for PHP. It resolves and installs PHP library dependencies declared in a project’s composer.json manifest, downloads them from Packagist (the central PHP package repository), generates an optimised autoloader, and manages version constraints with semantic versioning. Composer transformed PHP development by enabling the modern package-based ecosystem — frameworks like […]

Read more
How to Install PHP 8.3 on RHEL 9 — step-by-step RHEL 9 tutorial on Progressive Robot

How to Install PHP 8.3 on RHEL 9

PHP is the dominant server-side scripting language powering WordPress, Laravel, Drupal, Magento, and thousands of other web applications. RHEL 9 ships with PHP 8.1 by default, but the Remi repository provides the latest PHP releases including PHP 8.3. PHP 8.3 introduced typed class constants, new json_validate() function, and further performance improvements over PHP 8.2. The […]

Read more
How to Configure Database Connection Pooling with PgBouncer on RHEL 9 — step-by-step RHEL 9 tutorial on Progressive Robot

How to Configure Database Connection Pooling with PgBouncer on RHEL 9

PgBouncer is a lightweight PostgreSQL connection pooler that solves one of PostgreSQL’s most common scalability problems: the high cost of creating new database connections. Unlike MySQL, PostgreSQL spawns a new OS process for each client connection, which consumes approximately 5–10 MB of memory and requires significant CPU time to establish. Web applications that open hundreds […]

Read more
How to Install Apache Kafka on RHEL 9 — step-by-step RHEL 9 tutorial on Progressive Robot

How to Install Apache Kafka on RHEL 9

Apache Kafka is a distributed event streaming platform designed for high-throughput, fault-tolerant, and replayable message streams. Unlike traditional message brokers, Kafka persists messages to disk in ordered, append-only topic logs and retains them for a configurable period (days or weeks). Consumers read messages at their own pace using consumer offsets, and any consumer can re-read […]

Read more
How to Install and Configure RabbitMQ on RHEL 9 — step-by-step RHEL 9 tutorial on Progressive Robot

How to Install and Configure RabbitMQ on RHEL 9

RabbitMQ is a mature, battle-tested open-source message broker that implements the AMQP 0-9-1 protocol. It decouples application components by enabling asynchronous communication through exchanges, queues, and bindings. Producers publish messages to exchanges; exchanges route messages to queues based on routing rules (direct, topic, fanout, headers); consumers subscribe to queues and process messages independently of the […]

Read more
How to Monitor MySQL with Prometheus mysqld_exporter on RHEL 9 — step-by-step RHEL 9 tutorial on Progressive Robot

How to Monitor MySQL with Prometheus mysqld_exporter on RHEL 9

MySQL’s built-in metrics are powerful but not easily scraped. Prometheus mysqld_exporter is the standard exporter that translates MySQL status variables, InnoDB engine metrics, and replication lag statistics into the Prometheus exposition format. Combined with Grafana, the mysqld_exporter provides real-time dashboards covering query throughput, connection pool usage, InnoDB buffer pool hit rates, disk I/O, and replication […]

Read more
How to Install and Configure Memcached on RHEL 9 — step-by-step RHEL 9 tutorial on Progressive Robot

How to Install and Configure Memcached on RHEL 9

Memcached is a high-performance, distributed in-memory key-value cache designed specifically for caching database query results, session data, and computed values. Unlike Redis, Memcached is deliberately simple — it does not support persistence, replication, or complex data types. This simplicity makes Memcached extremely fast and memory-efficient: it uses a slab allocator to eliminate memory fragmentation and […]

Read more
CHAT