“Ubuntu Kill Port” Respostas de código

Mate Port Ubuntu

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

Mate Port Linux

kill -9 $(lsof -t -i:8080)
Combative Cobra

Mate Port Ubuntu

sudo kill -9 `sudo lsof -t -i:3002`
Strange Seahorse

Processo de parada do Ubuntu na porta

sudo kill -9 `sudo lsof -t -i:{PORT_NUMBER}`
Outrageous Opossum

Pare a porta ubintu

sudo kill -9 `sudo lsof -t -i:9001`
Auuntoo

Ubuntu Kill Port

You want to use backtick not regular tick:
sudo kill -9 `sudo lsof -t -i:9001`

If that doesn't work you could also use $() for command interpolation:
sudo kill -9 $(sudo lsof -t -i:9001)
Enthusiastic Echidna

Respostas semelhantes a “Ubuntu Kill Port”

Perguntas semelhantes a “Ubuntu Kill Port”

Mais respostas relacionadas para “Ubuntu Kill Port” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código