Skip to content

Find Processes Using Port 8080 on Linux

To find processes using port 8080 on Linux, you can use the lsof command. Here’s how:

Terminal window
lsof -i :8080

This command will list all processes that are using port 8080.

To stop the process, use the kill command.

Terminal window
kill <PID>

To force it, use the -9 flag:

Terminal window
kill -9 <PID>