short for **meteor up**, mup bundles and packages your Meteor app into a tarball for deployment
Questions tagged [mup]
81 questions
7
votes
3 answers
cannot start docker daemon (graphdriver issue)
running Ubuntu 16.04.5 LTS 4.4.0-108-generic on a virtual private server
My aim is to deploy a meteor application with mup.js,
but it fails because of dockerd not being launched. The problem is, i cannot get dockerd to launch after a system…

Samuel Hackwill
- 75
- 1
- 1
- 8
6
votes
1 answer
meteor-up (mup) new docker image
My applications needs graphicksmagick and phantomjs for seo to work
I get a error: cfs:graphicsmagick could not find "graphicsMagic" or "imageMagic" on the system (normal it is not installed in the image by…

MickaelFM
- 897
- 1
- 8
- 19
5
votes
1 answer
cannot connect to meteor with android-ddp after deploying the meteor app
I was using ws://example.com:3000/websocket for connecting Android-ddp to meteor app. Meteor was runing on example.com:3000. It was working fine.
Now I deployed the app using mup on the same URL, example.com and port: 3000. I am able to access the…

Deepak jha
- 298
- 5
- 19
4
votes
0 answers
MUP Deploy : MongoError: failed to connect to server [mongodb:27017] on first connect [MongoError: getaddrinfo ENOTFOUND mongodb mongodb:27017]
I am facing below issue while mup deploy.
[18.220.xxx.xxx] x Verifying Deployment: FAILED
-----------------------------------STDERR-----------------------------------
meteor app on port:80
…

Rashmi
- 565
- 2
- 7
- 29
3
votes
1 answer
Meteor Up Setup "Start Mongo: Failed": Docker Container
What I'm trying to do is push the default meteor app that is auto generated on
meteor create myApp
to a raspberryPi3B+ running raspbian stretch lite.
I'm stuck at step 2-3 on the Meteor Up page: http://meteor-up.com/getting-started.html
I must have…

AustinFoss
- 385
- 5
- 13
2
votes
0 answers
Using Selenium Webdriver with Meteor on DigitalOcean
I have a meteor app hosted on DigitalOcean, but when I try to start a new WebDriver instance with Selenium, it says it can't find the chrome binary. I've installed chrome remotely, I've tried setting the binary path manually, letting selenium use…

Spencer Cornwall
- 289
- 2
- 14
2
votes
1 answer
meteor with MUP: mongodump in bash script used in a cronjob
I'm running a Meteor application using MUP for deployment. So on the server I created a backup-script, which looks like this:
#!/bin/sh
#export mongodump
docker exec -it mongodb mongodump --archive=/root/mongodump.gz --gzip
#create…

MS1
- 508
- 9
- 23
2
votes
1 answer
MeteorJS Mup - Pushing to bundle stuck at 0% on new computer
I have a MeteorJS app pushing to a Digital Ocean droplet. I recently got a newer Macbook Pro and am now doing all my dev on that (my old computer was a Macbook Pro too).
When I deploy to Digital Ocean using Mup on my new computer, everything goes as…

Nate Sturcke
- 21
- 1
2
votes
0 answers
502 Bad Gateway when hosting a Meteor app on AWS Elastic Beanstalk with Meteor-up
I have a Meteor app I've been trying to deploy to AWS with mup-aws-beanstalk.
Here is my repository This is a basic "Hello world" equivalent of MongoDB, Meteor, React, Node.js app. How to install
This works perfectly fine localy, and runs on…

Arslan
- 73
- 6
2
votes
0 answers
Fibers Installed Failed. Meteor MUP Deployment Prepare Bundle: Failed
I’m experimenting with the meteor platform, specifically deployment to EC2, I’m using the following a base https://github.com/yogiben/meteor-starter - I’m having no issues deploying other meteor projects, however with this project specifically, I…

Grant
- 33
- 4
2
votes
1 answer
How to access the file written on docker container volumes and share the URL to client side using NGINX
I am new to using Docker.
I have installed MUP (meteor-up) for deploying my meteor application. And that internally using the Docker.
Before using the MUP(Docker):-
I simply write few of my files(CSV) to the /opt/AHD directory in my Ubuntu…

Parveen yadav
- 2,252
- 1
- 21
- 35
2
votes
4 answers
mup setup : Error: Timed out while waiting for handshake
Problem here is when I am trying to run command mup setup
there is error,where I am going wrong
Started TaskList: Setup Docker
[54.186.xx.xxx] - Setup Docker
events.js:183
throw er; // Unhandled 'error' event
My mup.js file looks like…

Rashmi
- 565
- 2
- 7
- 29
2
votes
1 answer
How to change port of mongo in meteor deployment by mup?
I have meteor application with file mup.js. And port of mongo database is set equally to 27018.
module.exports = {
servers: {
...
},
meteor: {
...
env: {
PORT: 3000,
ROOT_URL: 'http://app.com',
MONGO_URL:…

Daniel
- 7,684
- 7
- 52
- 76
1
vote
1 answer
Unable to deploy meteor on ubuntu using meteor-up
I'm unable to deploy meteor using mup and i'm getting the below errors
Notes
My app name is malfintech
Server: ubuntu (on premis)
Info:
lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 22.04.1 LTS
Release:…

Roshdy
- 1,703
- 3
- 25
- 34
1
vote
0 answers
Meteor up Verifying Deployment: FAILED
I try to deploy my app with Meteor Up with the following configuration:
module.exports = {
servers: {
one: {
host: '192.168.0.220',
username: 'root',
password: '******',
},
},
app: {
name: 'my_app',
path:…

user7592187
- 11
- 3