pnkz
pnkz

Reputation: 336

Node Inspector Error while starting

I am getting error(PFB) while starting the node-inspector using command node-inspector &

Node Inspector v0.6.2

   info  - socket.io started

   warn  - error raised: Error: listen EACCES

Cannot start the server at 0.0.0.0:8080. Error: listen EACCES.

Upvotes: 10

Views: 6197

Answers (1)

thefourtheye
thefourtheye

Reputation: 239453

There is some other server running in port 8080. You can use rc style configuration to change the port on which it has to listen. Or you can simply do

node-inspector --web-port=9999 &

Upvotes: 18

Related Questions