“Port Kill Masocs” Kod odpowiedzi

Proces zabijania w porcie

#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

Zabij port

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

Zabij port

netstat -aon | findstr 8080
taskkill /f /pid 77777
Elegant Echidna

Zabij proces według portu

C:\> netstat -ano | findstr :YourPortNumber
Modern Millipede

Port Kill Masocs

brew tap devasghar/portkill && brew install devasghar/portkill/homebrew-portkill

# Usage
portkill 3000
portkill 3000,3001
devasghar

Odpowiedzi podobne do “Port Kill Masocs”

Pytania podobne do “Port Kill Masocs”

Więcej pokrewnych odpowiedzi na “Port Kill Masocs” w Shell/Bash

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu