美文网首页
bigcommerce 打包遇到问题

bigcommerce 打包遇到问题

作者: 孤单的天使 | 来源:发表于2020-05-14 09:48 被阅读0次

Error: ENFILE: file table overflow~~~~

这个其实是mac系统的打开文件数量限制

解决方法:执行下面的命令

echo kern.maxfiles=65536 | sudo tee -a /etc/sysctl.conf

echo kern.maxfilesperproc=65536 | sudo tee -a /etc/sysctl.conf

sudo sysctl -w kern.maxfiles=65536

sudo sysctl -w kern.maxfilesperproc=65536

ulimit -n 65536

https://github.com/reactioncommerce/reaction/issues/1938

相关文章

网友评论

      本文标题:bigcommerce 打包遇到问题

      本文链接:https://www.haomeiwen.com/subject/cironhtx.html