Answers for "remove all running process on specific port in linux"

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 a process at a port

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

Code answers related to "remove all running process on specific port in linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language