gpt4 book ai didi

mongodb - 使用mupx将Meteor部署配置到Google Compute Engine VM

转载 作者:行者123 更新时间:2023-12-02 14:08:36 25 4
gpt4 key购买 nike

虽然我已经尝试了几种有关SO相关问题的解决方案,但是在将Meteor项目部署到Google Compute Engine上的VM时,似乎没有任何解决办法可以解决我的问题。

我设置了mupx来处理部署,并且在运行时没有任何明显的问题

sudo mupx deploy

我的 mup.json如下
{
// Server authentication info
"servers": [
{
"host": "104.199.141.232",
"username": "simonlayfield",
"password": "xxxxxxxx"
// or pem file (ssh based authentication)
// "pem": "~/.ssh/id_rsa"
}
],

// Install MongoDB in the server, does not destroy local MongoDB on future setup
"setupMongo": true,

// WARNING: Node.js is required! Only skip if you already have Node.js installed on server.
"setupNode": true,

// WARNING: If nodeVersion omitted will setup 0.10.36 by default. Do not use v, only version number.
"nodeVersion": "0.10.36",

// Install PhantomJS in the server
"setupPhantom": true,

// Show a progress bar during the upload of the bundle to the server.
// Might cause an error in some rare cases if set to true, for instance in Shippable CI
"enableUploadProgressBar": true,

// Application name (No spaces)
"appName": "simonlayfield",

// Location of app (local directory)
"app": ".",

// Configure environment
"env": {
"ROOT_URL": "http://simonlayfield.com"
},

// Meteor Up checks if the app comes online just after the deployment
// before mup checks that, it will wait for no. of seconds configured below
"deployCheckWaitTime": 30
}

在浏览器中导航到我的外部IP时,我可以看到Meteor站点模板,但是未显示Mongodb数据。

http://simonlayfield.com

我在VM上设置了防火墙规则,以允许通过端口27017进行通信
Name: mongodb
Description: Allow port 27017 access to http-server
Network: default
Source filter: Allow from any source (0.0.0.0/0)
Allowed protocols and ports: tcp:27017
Target tags: http-server

我也尝试传递env变量 MONGO_URL,但是在几次失败的尝试之后,我在Meteor论坛上发现了 this post,这表明使用本地Mongodb数据库时不需要它。

我目前正在使用ssh而不是gcloud SDK连接到VM,但是如果它对解决方案有所帮助,我很乐意进行设置。

如果有人可以就我如何具体知道出了什么问题提供一些指导,我将非常感激。我设置的防火墙规则是否足够?专门使用Google Compute Engine VM时,是否需要考虑其他因素?我是否可以通过ssh检查服务器上的日志,以获得有关连接/防火墙/配置问题的更多信息?

我在这方面的知识有限,因此,如果有一个简单的修复方法使我回避,我深表歉意。

提前致谢。

最佳答案

最近有一些 meteor 更新,请重新运行您的部署

另外请注意:我总是为mup / mupx文件指定端口

"env": {
"PORT": 5050,
"ROOT_URL": "http://youripaddress"
},

关于mongodb - 使用mupx将Meteor部署配置到Google Compute Engine VM,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34561199/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com