Problem: When we get a message that port 8080 already in use then it becomes very difficult to use the same port for different processes.
Solution: Just run the below commands in command prompt and whoop! magic happens.
Follow the screenshot for the reference.
Sample commands:
netstat -ano | findstr :8080 (replace 8080 with your port)
taskkill /F /PID 11237 (replace 11237 with your pid)
A sample screenshot is for port 8088
Solution: Just run the below commands in command prompt and whoop! magic happens.
Follow the screenshot for the reference.
Sample commands:
netstat -ano | findstr :8080 (replace 8080 with your port)
taskkill /F /PID 11237 (replace 11237 with your pid)
A sample screenshot is for port 8088
0 comments:
Post a Comment