SyntaxFix
Write A Post
Hire A Developer
Questions
Use the following command:
lsof -n -i4TCP:8080 | awk '{print$2}' | xargs kill -9
The process id of port 8080 will be picked and killed forcefully using kill -9.
kill -9