Answers for "Error: listen EADDRINUSE: address alread"

4

EADDRINUSE: address already in use :::5000

sudo lsof -i :3000
Posted by: Guest on March-14-2020
-1

Error: listen EADDRINUSE: address already in use :::31641

ps aux | grep node //gets all the nodes and list of PID
kill -9 {PID}
Posted by: Guest on March-20-2020
0

Error: listen EADDRINUSE: address already in use

Find server pid:
	lsof -i tcp:5000 (the 5000 is the port number)
kill the server:
	kill -9 111119 (the 111119 is the pid)
Posted by: Guest on December-28-2020

Code answers related to "Error: listen EADDRINUSE: address alread"

Browse Popular Code Answers by Language