Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 mongoDB 中找不到我的数据库路径。
我真的需要知道我的数据在我的 Mac OSX 10.7 上的存储位置
当我更改我的 DBpath 时,它一直告诉我 DBpath 没有定义。(我正在使用自制软件)
先感谢您。
默认情况下,mongo 配置存储在以下路径中。
/etc/mongod.conf
您可以在以下文件中找到 dbpath。默认情况下是:
/data/db 或 c:\data\db
您可以使用以下命令更改 dbpath
mongod --dbpath /data/newpath
您应该能够通过在 mongo JS shell 中运行以下命令来找到使用的 dbpath:
db.serverCmdLineOpts()
查找“dbpath”的解析设置。