strapi启动命令不起作用

时间:2018-04-16 06:58:17

标签: mongodb mongodb-query strapi

我想在浏览器中启动 strapi cms ,但请告诉我:

  

确保 MongoDB数据库正在运行

如果MongoDB正在运行

我该如何解决这个问题?

Mongod & mongo is running

2 个答案:

答案 0 :(得分:1)

我有同样的问题,我不得不将mongo更新为3.6,使用

停止mongod服务
$ mongod

并在终端中运行mongod并将其保持打开状态。

$ sudo service mongod start

下次它似乎认出了由命令启动的mongo服务

function showAlert() {
  var container = document.getElementById("alertContainer");
  var overlay = document.getElementById("alertOverlay");
  if (container.style.display === "block") {
    container.style.display = "none";
    overlay.style.display = "none";
  } else {
    container.style.display = "block";
    overlay.style.display = "block";
  }
}

function alert(text) {
  showAlert();

  $(alertHeader).html("Alert!");
  $(alertHeader).css('text-align', 'center');

  $(alertText).html(text);
  $(alertText).css('text-align', 'center');
}

function confirm(text) {
  showAlert();

  $(alertHeader).html("Confirm");
  $(alertHeader).css('text-align', 'center');

  $(alertText).html(text);
  $(alertText).css('text-align', 'center');

  return true; //does not wait for user input just confirms and runs the code

}


function commitRow(btn) {
  if (confirm("Are you sure you would like to commit this row?")) {
    //does stuff
  }
}

答案 1 :(得分:0)

转到您的项目文件。 转到config/environments/development folder并单击database.json。对于username and password,您将其留空。和图片中的host you put 127.0.0.1 port: 27017

enter image description here

如果完成修改,则打开两个终端: 首先,您要做的是启动mongoDB:

  

蒙哥

mongoDB启动后,您可以通过执行以下操作在另一个控制台上开始使用

  

strapi启动或npm启动