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

前端 未结 7 1723
没有蜡笔的小新
没有蜡笔的小新 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 01:56

    If you use 32 bit Windows system, then execute the following in the command prompt:-

    1. Go to the bin directory of MongoDB using the command 
    

    cd C:\ProgramFile\MongoDB\Server\3.x\bin

    2. Type the following command 
    

    mongod.exe --storageEngine=mmapv1

    and click Enter. It will solve the error. Thanks!

提交回复
热议问题