Zeigt belegte Ports und zugehörige Prozesse
Displays occupied ports and their associated processes with common developer port references.
/plugin marketplace add fellnerd/claude-marketplace/plugin install my-mac-plugin@dimetrics-marketplaceZeigt welche Ports belegt sind und von welchen Prozessen.
lsof -iTCP -sTCP:LISTEN -P -n | awk 'NR==1 || NR>1 {print $1, $2, $9}' | column -t
lsof -i :{{PORT}} -P -n
| Port | Typische Verwendung |
|---|---|
| 3000 | React/Next.js Dev Server |
| 3001 | Alternative Dev Server |
| 5000 | Flask/Python |
| 5173 | Vite Dev Server |
| 8000 | Django/FastAPI |
| 8080 | Alternative HTTP |
| 5432 | PostgreSQL |
| 3306 | MySQL |
| 6379 | Redis |
| 27017 | MongoDB |
⚠️ Frage IMMER vor dem Beenden um Bestätigung!
# PID finden
lsof -ti :{{PORT}}
# Prozess beenden (nach Bestätigung)
kill -9 $(lsof -ti :{{PORT}})