您的位置:首页 > 数据库 > Mongodb

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

2016-05-09 00:20 609 查看
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可以不加。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: