0
votes

I'm trying to use Meteor Up: https://github.com/arunoda/meteor-up

There is a setting in the config file to set the remote MongoDB URL It looks like this:

"env": {
    "PORT": 3000,
    "ROOT_URL": "http://dev.mysite.com",
    "MONGO_URL": "mongodb://MyMongoDBUsername:[email protected]:#####/name_of_my_db"
},

[##.###.###.##] invoking deployment process: FAILED

   -----------------------------------STDERR-----------------------------------
    Warning: Permanently added '##.###.###.##' (RSA) to the list of known hosts.
    npm WARN package.json [email protected] No repository field.
    npm http GET https://registry.npmjs.org/fibers
    npm http 304 https://registry.npmjs.org/fibers
      % 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) couldn't connect to host reverted back to the previous version due to the latest version didn't pick up! -----------------------------------STDOUT-----------------------------------

    > [email protected] install /opt/meteor/tmp/bundle/programs/server/node_modules/fibers
    > node ./build.js

    `linux-x64-v8-3.14` exists; testing
    Binary is fine; exiting
    [email protected] node_modules/fibers
    meteor stop/waiting
    meteor start/running, process 4281
    wait for mongo(5 minutes) to initiaze
    connected
    waiting for 15 secs while app is booting up
    checking for app is booted or not?
    meteor stop/waiting
    meteor start/running, process 4349

Does this look like a permissions issue?

Any help is greatly appreciated!

1
did you try escaping the @ as %40?nathan-m
Turns out I was using the connection string wrong, but that still leaves a deployment error.user1447679

1 Answers

0
votes

Turns out I had to upgrade the version of Node on my server. I discovered this when viewing the mup logs. Spoke with the developer who intends to add support for detecting version of node and accommodating when needed.