0
$ mongod --config /etc/mongod.conf
ERROR: could not read from config file

Allowed options:

General options:
  -h [ --help ]               show this usage information
  --version                   show version information

当我运行“mongo”命令终端变得无响应:

$ mongo
MongoDB shell version: 2.4.5
connecting to: test

--- no response ----

请注意:我是第一次在 MacOS X 上运行 MongoDB。

4

2 回答 2

0

安装时默认的 mongo.config 文件没有:

port = 27017

我从http://docs.mongodb.org/manual/administration/configuration/更新了配置文件

在终端中运行 mongo 命令可以正常工作:

    mongo

没有陷入无限循环,而是激活了 mongodb 提示符 >。

MongoDB shell version: 2.4.5
connecting to: test
Server has startup warnings: 
Fri Jul 12 02:17:19.667 [initandlisten] 
Fri Jul 12 02:17:19.667 [initandlisten] ** WARNING: soft rlimits too low. Number of files is 256, should be at least 1000
于 2013-07-12T10:27:49.560 回答
0

如果您已在 linux 中安装了以前的 mongodb 安装,则应检查路径 /etc/mongod.conf 如果 mongod.conf 存在并使用其他名称将其更改为 mongod.conf 并且在 sudo service mongod restart 后它工作正常

于 2020-01-07T07:28:34.563 回答