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

时间:2016-01-01 23:44:26

标签: mongodb meteor ssh google-compute-engine

虽然我已经在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检查服务器上的日志,以便更清楚地了解连接/防火墙/配置问题?

我在这方面的知识是有限的,如果有一个简单的解决方案可以避开我,那就道歉了。

提前致谢。

1 个答案:

答案 0 :(得分:0)

最近有一些meteord更新,请重新运行部署

另外作为旁注:我总是为mup / mupx文件指定一个端口

col1 val
abc 9
aae 5
bbc 12
...