Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.
like image 661
pnkz Avatar asked Dec 19 '13 10:12

pnkz


1 Answers

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 &
like image 64
thefourtheye Avatar answered Oct 24 '22 15:10

thefourtheye