Node.js - events.js:154 throw err write EPIPE; Program Crashing

后端 未结 3 2231
后悔当初
后悔当初 2020-12-18 06:18

Trying to run my Node.js program, which has worked for a long time, and now it is suddenly... not. I\'m trying to figure out the problem, and I figured it would be helpful i

3条回答
  •  盖世英雄少女心
    2020-12-18 06:53

    In my case, the issue was with the number of inotify watchers as discussed in this question

    And here is the original listen documentation

    echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
    

提交回复
热议问题