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