bigcommerce 打包遇到问题

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 打包遇到问题)