Reputation: 99
I am learning to code microservices in VertX on my new MacBook, and here is the issue:
How to avoid it? I can handle it with restarting my computer, but I believe there are is some faster approach?
Upvotes: 0
Views: 749
Reputation: 64
On Windows, to find and kill the process that is listening to a specified port (often 8080)
Open the Command Prompt as Administrator
netstat -anbo | findstr "8080"
Note: must use double quotes
The last field in the response line is the process id (pid). Stop the process with
Upvotes: 1
Reputation: 99
Thanks Daniu and NickAth, as you said the problem was wrong command - ctrl+z just suspended the process, and ctrl+c kills it, what works here fine.
Upvotes: 0