MongoDB cannot start server: The default storage engine 'wiredTiger' is not available with this build of mongod

前端 未结 7 1714
没有蜡笔的小新
没有蜡笔的小新 2020-11-29 01:19

MongoDB server failing to start with the following error:

2015-12-13T00:49:12.191+0600 I CONTROL [initandlisten] options: {}
2015-12-13T00:49

7条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-29 02:08

    You can use mongod --storageEngine=mmapv1 --dbpath "Your Path"

    For me :

    "C:\Program Files\MongoDB\Server\3.2\bin\mongod.exe" --storageEngine=mmapv1 --dbpath="C:\data\db"

    Hope it works fine for you too.

提交回复
热议问题