今天在服务器上构建的时候,出现如下报错:
Error: EMFILE: too many open files, open 'xxx/static/UE/dialogs/template/images/.svn/all-wcprops'
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! vueadmin@1.0.5 build: `node build/build.js`
通常这类错误的原因是因为linux的文件句柄数不够导致,执行ulimit -a 查看下,结果如下
core file size          (blocks, -c) 0
data seg size           (kbytes, -d) unlimited
scheduling priority             (-e) 0
file size               (blocks, -f) unlimited
pending signals                 (-i) 31793
max locked memory       (kbytes, -l) 64
max memory size         (kbytes, -m) unlimited
open files                      (-n) 1024
pipe size            (512 bytes, -p) 8
POSIX message queues     (bytes, -q) 819200
real-time priority              (-r) 0
stack size              (kbytes, -s) 8192
cpu time               (seconds, -t) unlimited
max user processes              (-u) 31793
virtual memory          (kbytes, -v) unlimited
file locks                      (-x) unlimited
其中open files 为(-n) 1024, 表示一个进程最大可打开的文件句柄数,前端构建时,因为svn目录下包含的文件较多,因此1024是不足够的,通常性能调优的时候也会对该配置项做调优,扩大到65536,办法如下:

vi /etc/security/limits.conf,在最后面添加如下两行,添加完成之后记得重新登录shell,并重启对应的进程或者应用

*       soft    nofile  65536
*       hard    nofile  65536

Logo

前往低代码交流专区

更多推荐