事象
yarn install
していたら、以下のエラーに出会った。
error An unexpected error occurred: "ENFILE: file table overflow ...
環境
Mac OS 11.2.3 (Big sur)
node v14.16.1
対処方法
nodeがどうとかyarnがどうとかでなく、Macの制限が原因みたい。
で、以下のコマンド実行
$ echo kern.maxfiles=65536 | sudo tee -a /etc/sysctl.conf
Password:
kern.maxfiles=65536
$ echo kern.maxfilesperproc=65536 | sudo tee -a /etc/sysctl.conf
kern.maxfilesperproc=65536
$ sudo sysctl -w kern.maxfiles=65536
kern.maxfiles: 12288 -> 65536
$ sudo sysctl -w kern.maxfilesperproc=65536
kern.maxfilesperproc: 10240 -> 65536
$ ulimit -n 65536
その後、無事にyarn install
完了!!!
よかった!!