Read the statement by Michael Teeuw here.
eaddress in use
-
@binog said in eaddress in use:
EADDRINUSE
The
EADDRINUSE
error usually means that another instance of the mirror is running. If you start the mirror with pm2, you can do a pm2 list to show the current processes that are running under pm2. You can then stop that process withpm2 stop #id
orprocess stop all
. Then you should be able to start the mirror again. -
@mumblebaj
Thank You for reply ! None the less, there was no other instance running, I double checked it, nore was an instance under npm running. I finally decided to format the card and start over,… thx -
@binog Even though it’s fixed, there could be another issue - something else running on port 8080. I always change the default ports… 60001, 60002, etc. Less mess.
-
Can you run the following commands from the CLI to check if anything is using that port
sudo netstat -punta | grep LIST sudo netstat -punta | grep 8080
-
Thank You, Nickthebeer and BKeyport
I’ll try in future, I finally decided to reinstall the whole system.
-
@binog That is a pity. We could probably have found the issue and save your current state prior to the issue. Hope it is running fine now though.
-
@bkeyport 1st thing I do is change the port always :)
-
As well as the sample config is documented, I’m shocked that the port line is blank.
I’d totally have it:
port: 8080 // Change this! Recommended over 60000 to avoid conflict
But, hey, I’m just a hack, ya know? 😉
-