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,930
  • 22
  • 75
  • 117
Daryl Rodrigo
  • 1,387
  • 2
  • 11
  • 19

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
  • 11,035
  • 5
  • 54
  • 86