kill what is running on port 9000 code example
Example 1: kill port
kill -9 $(lsof -t -i:8080)
Example 2: kill port
netstat -aon | findstr 8080
taskkill /f /pid 77777
kill -9 $(lsof -t -i:8080)
netstat -aon | findstr 8080
taskkill /f /pid 77777