paul-lrr / nifty-recognizer

node server and html files to connect the Deckedbuilder card recognizer to a streaming overlay
Other
36 stars 4 forks source link

Server will not run #4

Closed boye-s closed 4 years ago

boye-s commented 7 years ago

Hi!

I was following your video and when I came to the part where you start the server I get this:

D:\GitHub\nifty-recognizer>node index.js
events.js:160
      throw er; // Unhandled 'error' event
      ^

Error: listen EACCES 0.0.0.0:80
    at Object.exports._errnoException (util.js:1026:11)
    at exports._exceptionWithHostPort (util.js:1049:20)
    at Server._listen2 (net.js:1244:19)
    at listen (net.js:1293:10)
    at Server.listen (net.js:1389:5)
    at Object.<anonymous> (D:\GitHub\nifty-recognizer\index.js:9:8)
    at Module._compile (module.js:570:32)
    at Object.Module._extensions..js (module.js:579:10)
    at Module.load (module.js:487:32)
    at tryModuleLoad (module.js:446:12)

D:\GitHub\nifty-recognizer>

Any idea what could be wrong?

Sertion commented 7 years ago

This should mean that you have something else listening on port 80 already. Might be Skype or another web server.

It could also mean you are running an old version of node. I have it working with 4.2.1 and 7.2.0 on windows.

DerPilsner commented 7 years ago

I know I'm really late to the party, but I've been running through this tutorial and I ran into the same problem. After a bit of noodling, I determined that IIS was already listening on port 80. After turning it off on my host, this issue was resolved.