linux debian stop a process in a port code example
Example 1: kill port
kill -9 $(lsof -t -i tcp:8080)
Example 2: kill port
kill -9 $(lsof -t -i:8080)
Example 3: kill a process at a port
fuser -k 8080/tcp
kill -9 $(lsof -t -i tcp:8080)
kill -9 $(lsof -t -i:8080)
fuser -k 8080/tcp