Grunt服务器错误,EMFILE

时间:2014-09-29 17:59:08

标签: javascript gruntjs grunt-contrib-watch

每当我做“grunt服务器”时,它会自动给我这个错误:

Running "watch" task
Waiting...
Warning: EMFILE, too many open files

接下来:

(node) warning: Recursive process.nextTick detected. This will break in the next version of node. Please use setImmediate for recursive deferral.

我在网上看到的这个常见修复程序正在改变名称,如下所示:

grunt.registerTask('uglify', ['jshint', 'uglify']);

grunt.registerTask('myuglify', ['jshint', 'uglify']);

虽然我的问题无法用这种方法修复,因为我没有使用与任务相同的名称。

我的gruntfile.js:

module.exports = function(grunt){
grunt.initConfig({
  sass: {
    dist: {
      files: {
        'styles/css/main.css': 'styles/sass/main.scss'
      }
    }
  }

  ,watch: {
    options:{livereload:true},
    sass:{
        files:'styles/sass/*.scss',
        tasks:'sass'
        }
    },

    express:{
        all:{
            options:{
                port:9000,
                hostname:'localhost',
                bases:'.',
                livereload:true

            }

        }
    }
});

grunt.loadNpmTasks('grunt-contrib-sass');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-express');
grunt.registerTask('default', ['sass'])
grunt.registerTask('server',['express','watch'])

}

有什么想法吗?

2 个答案:

答案 0 :(得分:2)

我今天遇到了这个浪费时间的错误,GitHub存储库上的解决方案对我不起作用。在搜索与process.nextTick弃用警告相关的此问题后,我得出结论,运行依赖于监视文件/ glob的任务是一个潜在原因。

这是我网站的Gruntfile:

module.exports = function (grunt) {
    grunt.initConfig({
        pkg: grunt.file.readJSON('package.json'),
        watch: {
            dev: {
                files: ['**/*.js', 'public/stylesheets/**/*.scss'],
                tasks: ['express:dev'],
                options: {
                    spawn: false
                }
            }
        },
        express: {
            dev: {
                options: {
                    script: 'server.js',
                    node_env: 'development'
                }
            }
        }
    });

    grunt.loadNpmTasks('grunt-contrib-watch');
    grunt.loadNpmTasks('grunt-express-server');

    grunt.registerTask('default', ['express:dev', 'watch']);
};

我通过从watch任务中删除js文件解决了这个问题,该任务重启了Express。上述任务的以下配置对我来说很好:

watch: {
    dev: {
        files: ['public/stylesheets/**/*.scss'],
        tasks: ['express:dev'],
        options: {
            spawn: false
        }
    }
},

This SO answer提供了类似的修复方法。有趣的是,我从来没有在我的Ubuntu机器上遇到过这个问题;当我克隆我的存储库时,它发生在我的MacBook上。

答案 1 :(得分:0)

当我输入

时,

为我工作

sudo grunt serve

可能是另一种解决方案。只是增加增加读取文件限制。 https://github.com/gruntjs/grunt-contrib-watch#how-do-i-fix-the-error-emfile-too-many-opened-files

ulimit -n 10480