“Kill Port 80 Linux” Réponses codées

tuer le processus sur le port

#To list any process listening to the port 8080:
lsof -i:8080

#To kill any process listening to the port 8080:
kill $(lsof -t -i:8080)

#or more violently:
kill -9 $(lsof -t -i:8080)
Stormy Squirrel

tuer le port

sudo kill -9 `sudo lsof -t -i:9001`
Duck Duck Go-ogle

tuer le port

kill -9 $(sudo lsof -t -i:8080)
Wicked Wombat

Kill Port 80 Linux

sudo lsof -i tcp:80
#or
sudo lsof -t -i tcp:80 | sudo xargs kill
Pogi

tuer un port

kill $(lsof -t -i:8080)
//kill port 8080
Enthusiastic Earthworm

tuer le port

// Option 1: if you have [email protected]^ version
npx kill-port 8080

// Linux
kill -9 $(lsof -t -i tcp:8080)

// Windows command line:
for /f "tokens=5" %a in ('netstat -aon ^| find ":8080" ^| find "LISTENING"') do taskkill /f /pid %a

// Windows bat-file:
for /f "tokens=5" %%a in ('netstat -aon ^| find ":8080" ^| find "LISTENING"') do taskkill /f /pid %%a
Frail Fowl

Réponses similaires à “Kill Port 80 Linux”

Questions similaires à “Kill Port 80 Linux”

Plus de réponses similaires à “Kill Port 80 Linux” dans Shell/Bash

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code