Answers for "kill what's running on port linux"

5

kill port linux

kill -9 $(lsof -t -i:8080)
Posted by: Guest on December-29-2020
1

stop a process running on a port

# Print PID of process bound on that port.
fuser 8080/tcp

# Kill that process
fuser -k 8080/tcp
Posted by: Guest on May-01-2020
0

kill linux port

sudo fuser -k 1883/tcp
Posted by: Guest on November-07-2020
0

kill a process at a port

fuser -k 8080/tcp
Posted by: Guest on May-20-2020

Code answers related to "kill what's running on port linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language