meteor-up

Meteor Up Deployment to Amazon EC (Ubuntu 14.04) not working

橙三吉。 提交于 2020-01-03 04:08:28
问题 I setup a standard Amazon Micro instance with Ubuntu 14.04, set a sudo user, and basically followed the instructions for Meteor Up. I get this error at the "Invoking deployment process" stage... -----------------------------------STDERR----------------------------------- Warning: Permanently added 'ec2-54-200-136-28.us-west-2.compute.amazonaws.com,54.200.136.28' (ECDSA) to the list of known hosts. npm http GET https://registry.npmjs.org/fibers npm http 304 https://registry.npmjs.org/fibers %

Can I use Velocity with Meteor Up?

折月煮酒 提交于 2019-12-25 00:36:35
问题 I recently started using Velocity with Meteor and really like having the HTML reporter as I go. It would be great if the rest of my team could see the testing status on our dev and testing servers, which are deployed on AWS EC2 via Meteor Up. Unfortunately, Velocity relies on Meteor running in debug mode (what you get with meteor or meteor run locally), and turns off for production deployments (running the Node app that you get from meteor build ). Meteor Up (as well as most PaaS deployment

Docker rootfs_linux.go permission denied when mounting /proc

北城以北 提交于 2019-12-22 17:10:30
问题 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: starting container process caused "process_linux.go:368: container init caused \"rootfs_linux.go:57: mounting \\\"proc\\\" to rootfs \\\"/var/lib/docker/vfs/dir/20a621a73755db3f4030bc67bbf7ff9540bd1d63bb348d8be440d8ca63d3c922\\\" at \\\"/proc\\\"

Docker rootfs_linux.go permission denied when mounting /proc

房东的猫 提交于 2019-12-22 17:08:12
问题 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: starting container process caused "process_linux.go:368: container init caused \"rootfs_linux.go:57: mounting \\\"proc\\\" to rootfs \\\"/var/lib/docker/vfs/dir/20a621a73755db3f4030bc67bbf7ff9540bd1d63bb348d8be440d8ca63d3c922\\\" at \\\"/proc\\\"

docker exec is not working in cron

♀尐吖头ヾ 提交于 2019-12-20 11:50:11
问题 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 line PATH=$PATH:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin SHELL=/bin/sh PATH=/bin:/sbin:/usr/bin:/usr/sbin:/root/ # Mongo Backup docker exec -it mongodb mongodump -d meteor -o /dump/ I tried to change the url of script to /usr/bin/scirpts/ no luck I even tried to run script directly in

docker exec is not working in cron

倾然丶 夕夏残阳落幕 提交于 2019-12-20 11:50:08
问题 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 line PATH=$PATH:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin SHELL=/bin/sh PATH=/bin:/sbin:/usr/bin:/usr/sbin:/root/ # Mongo Backup docker exec -it mongodb mongodump -d meteor -o /dump/ I tried to change the url of script to /usr/bin/scirpts/ no luck I even tried to run script directly in

AWS SES with Meteor

删除回忆录丶 提交于 2019-12-20 03:07:17
问题 I'm trying to out a Meteor package to interface with AWS SES called tarang:email-ses built by @Akshat. I'm on Meteor @1.* running on a AWS EC2 instance. When I a test run with the code below, no email was sent out. Meteor Code I've set up the AWS access key ID and secret access key and use it here: Meteor.startup(function () { Email.configSES({ AWSAccessKeyID: 'access-key', AWSSecretKey: 'secret-key' }); }); I've also verified my emails and domain. Here I make sure I'm sending from my

Meteor UP to deploy meteor app. Issues with remote DB url?

妖精的绣舞 提交于 2019-12-12 03:41:54
问题 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:MyMongoHQPassword@troup.mongohq.com:#####/name_of_my_db" }, [##.###.###.##] invoking deployment process: FAILED -----------------------------------STDERR----------------------------------- Warning: Permanently added '##.###.###.##' (RSA) to

How can I rewrite/redirect the default page in Meteor to point to /public/index.html

≯℡__Kan透↙ 提交于 2019-12-12 00:36:32
问题 I am using Meteor as the backend to my ionic+angular webApp. I'm deploying the app using meteor-up . I have put my entire app in the Meteor /public folder and it works find when I access it like this: http://localhost:3000/index.html How can I set/rewrite/redirect the Meteor default page so I can load the same page from: http://localhost:3000/ or http://localhost:3000/myApp without losing my Meteor server 回答1: Here is the complete solution: fs = Npm.require('fs'); crypto = Npm.require('crypto

AWS SES Production Access setup with Meteor

六眼飞鱼酱① 提交于 2019-12-11 03:27:17
问题 Setting up Meteor to use "out of the box" AWS SES is simple, and one can use native Meteor "Email" methods without modification. Steps to implement this can be found here. Thanks to Brian Shamblen for putting together a detailed answer. But one caveat with the "out of the box" SES is you need to both verify the sender and receiver email address. To remedy this, you can put in a request with AWS SES for what they call, Production Access . And further, according to Brian Shamblen, The process