MySQL Process Control and Capacity Management Commands

When troubleshooting MySQL performance issues such as CPU saturation, several administrative techniques can help identify and resolve problems efficiently. This guide coveers practical commands for process control, capacity analysis, and schema management. Bulk Connection Termination When specific clients generate excessive connections, individ ...

Posted on Mon, 15 Jun 2026 17:02:03 +0000 by gikon

Obfuscating Linux Processes through Filesystem Mounting and Library Hijacking

Process Concealment via Procfs Mounting In Linux environments, process metadata is exposed via the /proc pseudo-filesystem. Standard monitoring utilities like ps, top, and htop retrieve system information by reading the subdirectories within /proc that correspond to specific Process IDs (PIDs). By utilizing the mount command with the --bind fla ...

Posted on Wed, 03 Jun 2026 16:49:12 +0000 by cameronjdavis

FastCGI Process Manager Architecture and Implementation in PHP7

FastCGI Process Manager (FPM) is a process manager for PHP's FastCGI execution mode. Its core functionality involves managing worker processes that handle FastCGI requests. FastCGI Protocol Fundamentals FastCGI is a application-layer communication protocol between web servers (like Nginx or Apache) and application processors. PHP implements the ...

Posted on Wed, 13 May 2026 18:06:13 +0000 by tomkure

Operating System Core Concepts Review

0. TCP/IP Network Model Layers The TCP/IP model consists of four layers: Application, Transport, Internet, and Network Access. 1. Linux Commands for Process Status, Memory Usage, and tar Extraction Process Status: Use ps command. For example, ps -aux | grep PID shows the status of a specific process. Memory Usage: Use free command. For example, ...

Posted on Sat, 09 May 2026 15:12:34 +0000 by AMcHarg

Understanding Linux Process Management: Concepts, States, and Priority

Operating System Fundamentals Overview Any computer system includes a fundamental collection of programs collectively known as the Operating System (OS). At a high level, the OS comprises: Kernel: Handles process management, memory management, file management, and device drivers Supporting programs: Libraries, shell programs, and other utiliti ...

Posted on Fri, 08 May 2026 23:56:05 +0000 by k_ind

Linux Process Waiting and Execution Replacement

Process Waiting and ReapingParent processes must synchronize with their child processes to reclaim system resources and retrieve termination statuses. Without proper waiting, terminated children become zombies, retaining entries in the process table.Waiting MechanismsThe wait function provides a basic blocking approach:#include <sys/types.h& ...

Posted on Fri, 08 May 2026 20:18:15 +0000 by brodywx