DEV Community

Discussion on: Something is already running on port 3000

Collapse
 
ekeijl profile image
Edwin

Sometimes the Node process just hangs and you need to stop it manually.
Enter this into your terminal if you want to check if something is still running at that port:

lsof -i :3000

Then you can stop the process in your terminal if you want.

Collapse
 
equuscaballus profile image
equuscaballus

tried that command but didn't worked