Questions tagged [meteor-up]

Meteor Up (mup for short) is a command line tool that allows you to deploy any meteor app into your own server

Meteor Up (mup for short) is a command line tool that allows you to deploy any meteor app into your own server. It supports Ubuntu 12.04 or higher servers from any Cloud Infrastructure Provider.

Features

  • Single command server setup
  • Single command deployment
  • Environmental Variables management
  • Support for settings.json
  • Password or Private Key (pem) based server authentication
  • Access, logs from the terminal (supports log tailing)

GitHub Page: https://github.com/arunoda/meteor-up

179 questions
72
votes
6 answers

docker exec is not working in cron

I have pretty simple command which is working fine standalone as a command or bash script but not when I put it in crontab 40 05 * * * bash /root/scripts/direct.sh >> /root/cron.log which has following…
user555
  • 1,489
  • 2
  • 15
  • 28
19
votes
4 answers

How run multiple meteor servers on different ports

How can meteor run on multiple ports.For example if the meteor run on 3000 i need another meteor app run on the same terminal.Please help me.
vamsi kr
  • 431
  • 1
  • 4
  • 13
13
votes
2 answers

Docker rootfs_linux.go permission denied when mounting /proc

I'm using meteor-up to deploy to docker instances inside an LXD container. When it attempts to bring up a MongoDB docker instance, it fails with the following error: docker: Error response from daemon: oci runtime error: container_linux.go:265:…
sil
  • 1,769
  • 1
  • 18
  • 34
10
votes
5 answers

Meteor Up Docker and Graphicsmagick

I'm looking for how to install Graphicsmagick at Meteor Up Docker. I found this solution (Access binaries inside docker) but I couldn't make work, where do I put those lines at start.sh? meteorDockerId=docker ps | grep meteorhacks/meteord:base | awk…
Guima Ferreira
  • 195
  • 1
  • 11
10
votes
7 answers

Meteor Up deployment, can't use meteor mongo --url

I've recently deployed my Meteor app to a Digital Ocean droplet running Ubuntu 14.04 x32. I used Meteor Up with this mup.json file: { // Server authentication info "servers": [ { "host": "mycorrecthostname", "username": "root", …
blaineh
  • 2,263
  • 3
  • 28
  • 46
9
votes
1 answer

Meteor app crash randomly throwing a 'MongoError: server instance pool was destroyed' error

I deployed a meteor app to an AWS server using mup which used docker to deploy the app. I also used mLab sandboxed db. The issue is, the app crashes without warning after some time. Crashing means the app still works but data won't load from the…
THpubs
  • 7,804
  • 16
  • 68
  • 143
8
votes
2 answers

How to find a memory leak in Meteor App

I made a little app and deployed it into a Ubuntu server using Meteor Up. There are very few users each day (<10), but after few days a lot of the memory of the server is used. So I think that there is a memory leak somewhere in my code. How to find…
Jerome Martin
  • 229
  • 1
  • 9
7
votes
4 answers

Deploying Meteor app via Meteor Up or tmux meteor

I'm a bit curious if Meteor Up (or other Meteor app deploying processes like Modulus) do anything fancy compared to copying over your Meteor application, starting a tmux session, and just running meteor to start your application on your server.…
aspin
  • 309
  • 2
  • 12
7
votes
1 answer

How to monitor server-side log when using Meteor and Meteor Up

I'm using Meteor and Meteor UP for deployment. So far so good. I can deploy my project to my test Ubuntu server. My problem is I don't know how to debug on server. If I use node.js and express, I can just write console.log("some error") to see…
Ko Ohhashi
  • 844
  • 1
  • 11
  • 23
7
votes
2 answers

Running meteor shell on production server deployed with meteor up

I need to run some server-side commands on my production app to modify some data, specifically adding some users to new roles from the alanning:roles package. My production server was deployed using mup. Per the mup docs, my app lives at /opt//app,…
bgmaster
  • 2,313
  • 4
  • 28
  • 41
7
votes
4 answers

Deploying Meteor to production with Meteor-Up, SSL and NGINX

I'm having difficulty deploying my meteor app ("myApp" below) into production using meteor-up with https and NGINX as a proxy. In particular, I think I am having trouble configuring the correct ports and/or paths. The deployment has worked in most…
Jeremy S.
  • 4,599
  • 3
  • 18
  • 25
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
6
votes
2 answers

How can I install Meteor-Up (mup) correctly?

I am trying to install Meteor-Up (mup) for deploying an app from my Ubuntu 14.04 laptop to a Ubuntu 14.04 server, but it does not seem to install correctly. How can I install mup correctly? I know that I need npm to in order to install mup. So, I…
David C
  • 1,898
  • 2
  • 16
  • 31
5
votes
1 answer

mup deploy errors when using webapp.connecthandlers

i'm trying to implement a 301 redirect when visiting my "www" url to reroute to "non-www". the redirect works on localhost and the project builds fine. when i try to deploy with mup, i get this error: x Invoking deployment process: FAILED …
rkstar
  • 1,178
  • 14
  • 27
4
votes
1 answer

meteor mup deploy failed

After mup init and mup setup server success with Meteor up, i run mup deploy and it fail at Verifying Deployment: FAILED : -----------------------------------STDERR----------------------------------- node-gyp rebuild make: Entering…
Stéphane R.
  • 1,386
  • 3
  • 19
  • 37
1
2 3
11 12