1

So I'm currently using a node webkit and express to run an application on a raspberry pi, however after leaving it on for a while it just crashes with the error:

events.js:85
      throw er; // Unhandled 'error' event
            ^ Error: bind ENFILE
    at exports._errnoException (util.js:746:11)
    at dgram.js:224:28
    at dns.js:85:18
    at process._tickCallback (node.js:355:11)

Can anybody give me some pointers or knows whats wrong here?

tarzanbappa
  • 4,781
  • 15
  • 70
  • 107
Daryl Rodrigo
  • 1,267
  • 1
  • 10
  • 18

1 Answers1

1

It sounds like you've hit the maximum number of allowed files/sockets open.

See this previous answer for more info.

Community
  • 1
  • 1
duncanhall
  • 10,278
  • 5
  • 49
  • 80