问题标签 [meteor-up]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
meteor - 无法在 Meteor-Up 中完成 mup 设置
我已经能够通过#mup 设置。我收到以下错误;
我发现了很多关于错误 stdin: is not a tty 但它们对我来说没有多大意义。
javascript - 在 Meteor.js 的 MUP 部署期间安装 NPM 模块时出错
我正在使用 Meteor-up mup
v0.6.8 将 Meteor v0.9.3 应用程序从 OSX 系统部署到 Ubuntu 14.04 系统上。它给出了一个错误,如下所示。
重复npm i -g mup
, mup setup
,mup deploy
但并没有解决问题。
似乎重建 NPM 包有问题。有没有人遇到过这个问题?想知道它npm-container
是否?
meteor - mup 抛出错误,在最后两次部署中运行良好
我已经用这个部署到我的 ip 两次并且工作正常,现在我在我的应用程序中添加了另一个 npm 包幻像,现在当我尝试部署它时,它抛出了一些错误
有人对此有任何想法吗?欢迎任何建议
meteor - Memory issue with meteor up (mup) on Digital Ocean
I couldn't find existing posts related to my issue. On a Digital Ocean Droplet, mup setup went fine, but when I try to deploy, I get the following error. Any ideas? Thanks!
Below are the logs. node -v indicates I am using 0.10.31. How do I check which script is exiting with the error? Any other ideas? Thanks!
After I went back to an old backup of the DO Droplet, and re-ran mup setup and mup deploy, I now get this in the command line output
and this in the logs:
meteor - mup 部署到 DO
我尝试使用 mup 部署到我的 DO
日志几次只显示一个错误
以前有人遇到过这种情况吗?
这里有什么问题?
提前致谢
mongodb - MeteorJS Mongo 连接超时
我有一个没有连接到 Mongo 的 MeteorJS 应用程序。它已使用meteor deploy 进行部署,但由于某种原因,它在尝试连接到数据库时超时:SI 仍然可以使用meteor mongo 访问mongo 数据库,并且所有数据都存在!
我正在使用 Meteor 0.9.3.1,这是我的包:
以下是来自流星日志的日志:
mongodb - 如何从命令行 Meteor Up 部署中获取 MONGO_URL?
我目前正在使用 Meteor Up 部署到 Digital Ocean。如果我没有在 mup.json 中指定 MONGO_URL,我可以在网站运行时从命令行获取值,即我不想关闭网站吗?
如果我转到 app 目录并运行meteor mongo --url
,我会收到以下错误:
即使我从应用程序目录运行应用程序,它也只会提供本地主机 MONGO_URL。我需要已部署应用程序的 MONGO_URL。
我也看过一些答案所建议的类似问题。我不同意在服务器上没有运行其他程序的情况下获取 MONGO_URL 是“不可能的”。伙计们,这并不是说我们在这里违反物理定律。从根本上说,应该有一种访问它的方法。仅仅因为还没有人弄清楚并不意味着它是不可能的。
meteor - 如何在不同端口上运行多个流星服务器
流星如何在多个端口上运行。例如,如果流星在 3000 上运行,我需要在同一终端上运行另一个流星应用程序。请帮助我。
nginx - 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 respects. It is running on a digital ocean droplet with a mongohq (now compose.io) database. My mup setup
, mup reconfig
(run now many times on my mup.json file) and mup deploy
commands with meteor-up all report no errors. If I ssh into my ubuntu environment on digital ocean and run status myApp
it reports myApp start/running, process 10049
, and when I check my mongohq database, I can see the expected collections for myApp were created and seeded. I think on this basis that the app is running properly.
My problem is that I cannot locate it visiting the site, and having no experience with NGINX servers, I cannot tell if I am doing something very basic and wrong setting up the ports and forwarding.
I have reproduced the relevant parts of my NGINX config file and mup.json file below.
The behavior I expected with the setup below is that if my meteor app listens on port 3000 in mup.json the app should appear when I visit the site. In fact, if I set mup.json's env.PORT to 3000, when visiting the site my browser tells me there is a redirect loop. If I change mup's env.PORT to 80, or leave the env.PORT out entirely, I receive a 502 Bad Gateway
message - this part is to be expected because myApp should be listening on localhost:3000 and I wouldn't expect to find anything anywhere else.
All help is MUCH appreciated.
MUP.JSON (in relevant part, lmk if more needs to be shown)
NGINX
Also note that the SSL certificates are configured and work fine so I think it is something with how the ports, paths and forwarding is configured. I don't know where the redirect loop is coming from.