Error starting Meteor application: illegal operation in the directory, unlink "... / dev_bundle"

I get this error when I try to run the application on my server using the command:

meteor 

Error:

 Error: EISDIR: illegal operation on a directory, unlink '/home/.../.../myapp/.meteor /local/dev_bundle' at Error (native) at Object.fs.unlinkSync (fs.js:932:18) at exports.makeLink (/tools/cli/dev-bundle-links.js:20:8) at [object Object].ensureDevBundleLink (/tools/project-context.js:1416:7) at [object Object]._readFile (/tools/project-context.js:1350:10) at new exports.ReleaseFile (/tools/project-context.js:1300:8) at /tools/cli/main.js:825:22 

My application works fine on my dev. to win. the machine.

I do not know what causes the error, please help.

+6
source share
2 answers

I got it by manually deleting all directories and links where the name started with "dev_bundle" inside the /.meteor/local directory.

Hope this helps!

+12
source

Also update meteor to the latest version using meteor update , and then follow @henk's solution. It worked for me.

0
source

All Articles