MUPX reploying error, "Try reinstalling `node-fibers`?"

I deployed a Meteor app on a server in my network. First time I deployed it everything worked except the accounts-twitter package, which is a whole different issue. When I tried to redeploy my app I get the following error:

mupx logs --tail=50

[172.27.1.33] Error: `/bundle/bundle/programs/server/node_modules/fibers/bin/linux-x64-v8-3.14/fibers.node` is missing. Try reinstalling `node-fibers`?
[172.27.1.33]     at Object.<anonymous> (/bundle/bundle/programs/server/node_modules/fibers/fibers.js:16:8)
[172.27.1.33]     at Module._compile (module.js:456:26)
[172.27.1.33]     at Object.Module._extensions..js (module.js:474:10)
[172.27.1.33]     at Module.load (module.js:356:32)
[172.27.1.33]     at Function.Module._load (module.js:312:12)
[172.27.1.33]     at Module.require (module.js:364:17)
[172.27.1.33]     at require (module.js:380:17)
[172.27.1.33]     at Object.<anonymous> (/bundle/bundle/programs/server/boot.js:1:75)
[172.27.1.33]     at Module._compile (module.js:456:26)
[172.27.1.33]     at Object.Module._extensions..js (module.js:474:10)
[172.27.1.33] npm WARN deprecated This version of npm lacks support for important features,
[172.27.1.33] npm WARN deprecated such as scoped packages, offered by the primary npm
[172.27.1.33] npm WARN deprecated registry. Consider upgrading to at least npm@2, if not the
[172.27.1.33] npm WARN deprecated latest stable version. To upgrade to npm@2, run:
[172.27.1.33] npm WARN deprecated
[172.27.1.33] npm WARN deprecated   npm -g install npm@latest-2
[172.27.1.33] npm WARN deprecated
[172.27.1.33] npm WARN deprecated To upgrade to the latest stable version, run:
[172.27.1.33] npm WARN deprecated
[172.27.1.33] npm WARN deprecated   npm -g install npm@latest
[172.27.1.33] npm WARN deprecated
[172.27.1.33] npm WARN deprecated (Depending on how Node.js was installed on your system, you
[172.27.1.33] npm WARN deprecated may need to prefix the preceding commands with `sudo`, or if
[172.27.1.33] npm WARN deprecated on Windows, run them from an Administrator prompt.)
[172.27.1.33] npm WARN deprecated
[172.27.1.33] npm WARN deprecated If you're running the version of npm bundled with
[172.27.1.33] npm WARN deprecated Node.js 0.10 LTS, be aware that the next version of 0.10 LTS
[172.27.1.33] npm WARN deprecated will be bundled with a version of npm@2, which has some small
[172.27.1.33] npm WARN deprecated backwards-incompatible changes made to `npm run-script` and
[172.27.1.33] npm WARN deprecated semver behavior.
[172.27.1.33] npm WARN package.json meteor-dev-bundle@0.0.0 No description
[172.27.1.33] npm WARN package.json meteor-dev-bundle@0.0.0 No repository field.
[172.27.1.33] npm WARN package.json meteor-dev-bundle@0.0.0 No README data
[172.27.1.33] => Starting meteor app on port:80
[172.27.1.33]
[172.27.1.33] /bundle/bundle/programs/server/node_modules/fibers/fibers.js:16
[172.27.1.33]   throw new Error('`'+ modPath+ '.node` is missing. Try reinstalling `node-fibe
[172.27.1.33]         ^
[172.27.1.33] Error: `/bundle/bundle/programs/server/node_modules/fibers/bin/linux-x64-v8-3.14/fibers.node` is missing. Try reinstalling `node-fibers`?
[172.27.1.33]     at Object.<anonymous> (/bundle/bundle/programs/server/node_modules/fibers/fibers.js:16:8)
[172.27.1.33]     at Module._compile (module.js:456:26)
[172.27.1.33]     at Object.Module._extensions..js (module.js:474:10)
[172.27.1.33]     at Module.load (module.js:356:32)
[172.27.1.33]     at Function.Module._load (module.js:312:12)
[172.27.1.33]     at Module.require (module.js:364:17)
[172.27.1.33]     at require (module.js:380:17)
[172.27.1.33]     at Object.<anonymous> (/bundle/bundle/programs/server/boot.js:1:75)
[172.27.1.33]     at Module._compile (module.js:456:26)
[172.27.1.33]     at Object.Module._extensions..js (module.js:474:10)

The new version of mup being worked on at https://github.com/kadirahq/meteor-up mentions this in the README FAQ:

Q) I get an deploy verification error with logs like below (Similar to issue 88)

Verifying Deployment: FAILED

Error:
-----------------------------------STDERR-----------------------------------
run:
npm WARN deprecated
npm WARN deprecated npm -g install npm@latest
npm WARN deprecated

A) Try increasing the value of deployCheckWaitTime field in mup.js file.

This is also being discussed via the following issue threads, but most people find increasing the deployCheckWaitTime setting fixes things.

https://github.com/arunoda/meteor-up/issues/905

1 Like

I had the same problem, for me increasing the value of deployCheckWaitTime to 60 works!

2 Likes

unfortunately changing the deployCheckWaitTime to doesn’t resolve the issue for me.
I can’t really see what is the issue and if it is related to meteor 1.3.
Any thoughts?

1 Like

I had the similar issue with mup and i think the issue is with new meteor build system

meteor build /path/to/build --architecture os.linux.x86_64
I fixed by doing manual deploying to my Digitial ocean staging server

Same issue here, changing the deployCheckWaitTime to doesn’t work for me. How do you do the manual deployment?