“porta grátis no Linux” Respostas de código

porta grátis no Linux

netstat -tulnap        // list all ports and processes
netstat -anp|grep "port_number"     // show port details
sudo fuser -k Port_Number/tcp       // free the port needed
# or
lsof -n -i :'port-number' | grep LISTEN  // get port details
# sample  response:  java   4744 (PID)  test  364u  IP0 asdasdasda   0t0  TCP *:port-number (LISTEN)
kill -9 PID  // free port
atem

Porta Linux Livre 8080

fuser -n tcp -k 9001 
Courageous Chamois

Respostas semelhantes a “porta grátis no Linux”

Perguntas semelhantes a “porta grátis no Linux”

Mais respostas relacionadas para “porta grátis no Linux” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código