how to do I stop a port listen linux code example
Example 1: kill all process at port
lsof -ti tcp:2525 | xargs kill
Example 2: debian kill open port
fuser -k 3000/tcp //will kill that process.
lsof -ti tcp:2525 | xargs kill
fuser -k 3000/tcp //will kill that process.