How can I tell where mongoDB is storing data? (its not in the default /data/db!)

前端 未结 12 449
北荒
北荒 2020-12-12 10:03

My host came with a mongodb instance and there is no /db directory so now I am wondering what I can do to find out where the data is actually being stored.

12条回答
  •  攒了一身酷
    2020-12-12 10:41

    If you could somehow locate mongod.log and the do a grep over it

    grep dbpath mongod.log
    

    The value for dbpath is the data location for mongodb!! All the best :)

提交回复
热议问题