How to Quickly Detect Occupied Ports on Linux with Python
This guide shows how to use Linux commands like lsof and netstat to identify occupied ports and provides a Python script that monitors specific IP ports for availability, complete with example outputs and explanations of key parameters.
How to view ports in Linux
I wanted to write a small Python program to probe ports, but first I needed to learn how to check occupied ports on Linux.
Use lsof -i:<port> to see which process uses a specific port, e.g., lsof -i:8000. The output shows that port 8000 is occupied by the lightweight file system forwarding service lwfs .
Another useful command is netstat -tunlp | grep <port>, for example netstat -tunlp | grep 8000, which lists the process details for the given port.
The following image explains the meaning of the parameters shown by netstat:
A Python script can monitor a specific IP and port to determine if it is occupied. The script’s execution result is shown below:
Signed-in readers can open the original source through BestHub's protected redirect.
This article has been distilled and summarized from source material, then republished for learning and reference. If you believe it infringes your rights, please contactand we will review it promptly.
MaGe Linux Operations
Founded in 2009, MaGe Education is a top Chinese high‑end IT training brand. Its graduates earn 12K+ RMB salaries, and the school has trained tens of thousands of students. It offers high‑pay courses in Linux cloud operations, Python full‑stack, automation, data analysis, AI, and Go high‑concurrency architecture. Thanks to quality courses and a solid reputation, it has talent partnerships with numerous internet firms.
How this landed with the community
Was this worth your time?
0 Comments
Thoughtful readers leave field notes, pushback, and hard-won operational detail here.
