NodeJS error “EMFILE, too many open files” on Mac OS

后端 未结 11 651
醉话见心
醉话见心 2020-12-22 16:53

For sometime I am having the following error:

Error: EMFILE, too many open files  \'/Users/blagus/Gallery/Websites/Nicsware/Pills/resources/core/auth.node.js         


        
11条回答
  •  南方客
    南方客 (楼主)
    2020-12-22 17:11

    You can solve this problem by increasing the maxfiles limit:

    launchctl limit maxfiles 16384 16384 && ulimit -n 16384
    

提交回复
热议问题