“Mate a porta 80 Linux” Respostas de código

Processo de matar no porto

#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

Porto de matar

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

Porto de matar

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

Mate a porta 80 Linux

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

Mate um porto

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

Porto de matar

// 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

Respostas semelhantes a “Mate a porta 80 Linux”

Perguntas semelhantes a “Mate a porta 80 Linux”

Mais respostas relacionadas para “Mate a porta 80 Linux” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código