Answers for "how to kill the port in ubuntu"

34

kill port ubuntu

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

kill port ubuntu

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

ubuntu stop process on port

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
0

kill port ubuntu

sudo kill 'sudo lsof -t -i:9001'
Posted by: Guest on May-03-2020
0

kill running port in ubuntu using procees id

sudo kill -9 `sudo lsof -t -i:1907`
#process_id:1907
Posted by: Guest on June-30-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language