使用 Git、MongoDB、Node、mean.io、Forever 安装基于 Web 的仪表板(DM 仪表板)时出现问题

Problems with installing web based Dashboard (DM Dashboard) with Git, MongoDB, Node, mean.io, Forever

我试图让 DM 仪表板在我的 Ubuntu 16.04 上运行。您可以在这里找到它:https://github.com/dm-dashboard/dashboard

我已经安装了 Git、MongoDB、Node、Mean.io 和 Forever。我刚接触所有的东西,包括 Git。有两件事我不明白:

  1. 在说明中,您可以找到:
Before we start the server, we will need to configure it for your environment

To Configure

Change to the checkout folder
Open config/env/development.json
Update the "db" property to point to your mongo DB
Save and close the file

打开 development.js 时发现 "db" 的部分说:

module.exports = {
  db: 'mongodb://' + (process.env.DB_PORT_27017_TCP_ADDR || 'localhost') + '/dashboard',
  debug: true,
  //  aggregate: 'whatever that is not false, because boolean false value turns aggregation off', //false
  aggregate: false,
  mongoose: {
    debug: false
},

现在我要改成什么?我不知道我的 MongoDB 在哪里。

  1. 要在浏览器中打开仪表板,说明如下:

Open your browser and navigate to

http://[path_to_where_you_deployed]:3000

"path_where_you_deployed" 是什么意思?

我觉得解决方案很简单,但我不知道该怎么做。

非常感谢您的帮助!

db 应该是您的 Mongo 数据库 URI

[path_to_where_you_deployed] 我们会在您启动此服务器的地方,例如 127.0.0.1 如果您在本地 运行 用于开发......或者 heroku url 如果您部署那里