Answers for "close ubuntu port"

50

kill port ubuntu

sudo kill -9 `sudo lsof -t -i:9001`
Posted by: Guest on May-03-2020
15

how to stop running port in ubuntu

sudo kill -9 `sudo lsof -t -i:{PORT_NUMBER}`
Posted by: Guest on March-30-2020
3

kill port ubuntu

fuser -n tcp -k 4000
Posted by: Guest on July-20-2021
1

kill a port in ubuntu

kill -9 $(sudo lsof -t -i:'portName')
//Ex. if portname is 3000
//then we will execute "kill -9 $(sudo lsof -t -i:3000)"
Posted by: Guest on January-21-2021
0

ubuntu kill running port

Kill specific port
Posted by: Guest on May-05-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language