Answer the question
In order to leave comments, you need to log in
How to find out what localhost:3050 is occupying?
I have a cloned git program. To run it, you need to run the build-start.sh command (the `build-start.sh` executable file is located in the root of the project) and then npm start.
But the launch fails and the terminal says that localhost 3050 is already busy.
How can I release it and overwrite the program I need on it?
Answer the question
In order to leave comments, you need to log in
The tags indicate windows.
1 netstat -nba
And we are looking for our port, who occupies. Run command prompt as administrator of
course 1.a
Get-NetTCPConnection -LocalPort 3050 | Select LocalAddress, RemoteAddress, RemotePort, @{Label='ProcessName';Expression={(Get-Process -id $_.OwningProcess).ProcessName}}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question