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

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

    I also come across this issues when i installed mongodb 32 bit msi for windows server.

    Reason could be:

    I think for mongodb 32 bit the database engine wont take automatically we need to explicitly give them while configuring the db path

    The fix is below:

    Run command prompt as administrator

    d:\mongodb>mongod --dbpath "data" --storageEngine "mmapv1"

    After adding the above bold code the issue resolved.

    Thanks Dev

提交回复
热议问题