~/blog
#linux
All articles tagged #linux โ practical guides from production experience.
Browse by category
Filter by topic
66 posts tagged #linux ยท page 8 of 8
December 5, 2024ยท12 min read
Linux TIME_WAIT Explained: Why It Causes Connection Failures and How to Fix It
Linux TIME_WAIT exhausts ephemeral ports and causes ECONNREFUSED under load โ even when your app is healthy. Learn what TIME_WAIT is, how to detect port exhaustion with ss and netstat, and the exact sysctl fixes that resolve it.
#linux#networking#troubleshooting#infrastructure#debugging
June 18, 2024ยท4 min read
Replacing iptables with nftables: A Practical Migration Guide
iptables is showing its age. nftables is the modern replacement โ cleaner syntax, better performance, and already the default on most distros. Here's how to migrate.
#firewall#linux#security#networking
May 2, 2024ยท9 min read
strace, lsof, and ss: The Trio That Solves Every Mystery
When logs give you nothing and the debugger isn't an option, these three tools let you see exactly what a running process is doing at the system call level.
#debugging#linux#troubleshooting#production