Node Inspector Error while starting

6.1k views Asked by At

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.
1

There are 1 answers

4
thefourtheye On

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 &