Windows 32bit版本安装Mongodb时发生的问题

来源:互联网 发布:卸载软件设置密码 编辑:程序博客网 时间:2024/06/05 11:05

from:http://stackoverflow.com/questions/34243731/mongodb-28663-cannot-start-server

Windows 32bit版本安装Mongodb时,会发生的下面问题

2016-05-09T00:09:45.124+0800 I STORAGE  [initandlisten] exception in initAndList
en: 28663 Cannot start server. The default storage engine 'wiredTiger' is not av
ailable with this build of mongod. Please specify a different storage engine exp
licitly, e.g. --storageEngine=mmapv1., terminating

原因是安装mongodb时,默认的storageEngine设置不支持Windows 32bit版本,需要切换。

mongod --storageEngine=mmapv1 --dbpath [your-path]
--dbpath可以不加。


0 0
原创粉丝点击