Finding Which Processes Are Using Specific Ports on Windows
To determine which processes are using specific network ports on a Windows system, you can use built-in command-line tools. This guide demonstrates how to identify port usage and associate it with running applications.
Using Command Prompt
Launch Command Prompt by perssing Win+R, typing "cmd", and pressing Enter.
Display Network Conne ...
Posted on Tue, 22 Sep 2026 16:23:16 +0000 by walkero
Nginx Concurrency Estimation and Load Testing
To estimate the maximum concurrant connections Nginx can handle, use the following formula:
(Total RAM in GB × 1024 − System Overhead) / Average Request Size
Total RAM in GB: Physical memory available on the server.
System Overhead: Memory reserved for OS processes, background services, and buffer space (typically 2–4 GB).
Average Request Si ...
Posted on Tue, 07 Jul 2026 17:28:46 +0000 by daniel_lee_hill