Server Management

- Advertisement -
Ad image

Latest Server Management News

How to Remove MariaDB Completely from RHEL/CentOS

Completely remove MariaDB on RHEL, AlmaLinux, Rocky, or CentOS: stop the service, dnf/yum remove, delete /var/lib/mysql and /etc/my.cnf, then optionally…

how7o

How to Redirect www to non-www (or vice versa) in Nginx

Redirect non-www to www or www to non-www in Nginx with a dedicated server block and return 301 $scheme://canonical$request_uri. Includes…

how7o

How to Install the Apache Web Server on Ubuntu

Install Apache on Ubuntu: apt install apache2, allow it through UFW, verify with systemctl, and set up a virtual host.…

how7o

How to Install HandBrake CLI on Linux (Flatpak)

Install HandBrake CLI on Linux with Flatpak (the official path) — flatpak install fr.handbrake.HandBrakeCLI. Includes RPM Fusion and apt alternatives.

how7o

How to Install and Set Up HAProxy on AlmaLinux, Rocky, or RHEL

Install and configure HAProxy on AlmaLinux, Rocky Linux, RHEL, or CentOS — dnf install, minimal frontend/backend config, firewalld setup, zero-downtime…

how7o

How to Fix Quotas in cPanel

Fix broken cPanel quotas with /usr/local/cpanel/scripts/fixquotas. Includes the mount-option check, package quota verification, and CloudLinux INODES cap.

how7o

How to Find What’s Pinning MySQL at 100% CPU

Find what's pinning MySQL at 100% CPU: SHOW FULL PROCESSLIST, SHOW ENGINE INNODB STATUS\G, and information_schema.processlist queries to roll up…

how7o

How to Fix “Error: MySQL Shutdown Unexpectedly” in XAMPP

Fix the "MySQL shutdown unexpectedly" error in XAMPP: rename mysql/data to data_old, copy mysql/backup as the new data, restore your…

how7o

How to Fix Missing Authorization Header in PHP Requests

Fix a missing Authorization header in PHP requests: forward it via .htaccess RewriteRule [E=...] or Apache SetEnvIf. Includes cPanel Pre-VirtualHost…

how7o

How to Enable the PHP DOM Extension

Enable the PHP DOM extension: install php-xml (or php8.x-xml), uncomment extension=dom in php.ini or run phpenmod dom, then restart PHP-FPM…

how7o