Mup deploy error ,need help

I use meteor 1.3 to create a project ,and meteor add acounts-password,when I mup deploy to my server ,in Invoking deployment process,and the error message as below:
-----------------------------------STDERR-----------------------------------
npm WARN meteor-dev-bundle@0.0.0 No description
npm WARN meteor-dev-bundle@0.0.0 No repository field.
npm WARN meteor-dev-bundle@0.0.0 No license field.
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:–:-- --:–:-- --:–:-- 0curl: (7) Failed to connect to localhost port 9901: Connection refused
Latest deployment failed! Reverted back to the previous version.
-----------------------------------STDOUT-----------------------------------

  SOLINK_MODULE(target) Release/obj.target/fibers.node
  COPY Release/fibers.node
make: Leaving directory `/opt/zy20/tmp/bundle/programs/server/node_modules/fibers/build'
Installed in `/opt/zy20/tmp/bundle/programs/server/node_modules/fibers/bin/linux-x64-v8-3.14/fibers.node`

and error in logs are
/opt/zy20/app/programs/server/node_modules/fibers/future.js:267
throw(ex);
^
Error: /opt/zy20/app/programs/server/npm/node_modules/meteor/npm-bcrypt/node_modules/bcrypt/build/Release/bcrypt_lib.node: invalid ELF header
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
at Module.require (module.js:364:17)
at require (module.js:380:17)

and deploy failed,anyone can give me some advices,thanks very much !

Try installing mup using my fork, which resolves this issue. Here’s how you can do that:

npm remove -g mup
git clone https://github.com/M4v3R/meteor-up
cd meteor-up
npm install
npm link

OR you can use mupx, which is developed actively and from what I’ve heard resolves these kind of issues as well.

Thank you very much for you suggestion,with the suggestion you given, app has been succesfully deployed and worked well.

Best Regard!

tom wang