您的当前位置:首页正文

mongodb32位启动不了怎么办

2024-08-01 来源:骅佗教育

解决mongodb32位启动不了的方法:

打开cmd,使用“mongod --dbpath(路径)”命令启动一下mongod数据库

然后查看产生的错误日志文件,将日志文件写到的解决方法加入进去就可以了

示例如下:

在日志文件中提示:

exception in initAndListen: 28663 Cannot start server. 
The default storage engine 'wiredTiger' is not available with this build of mongod. 
Please specify a different storage engine explicitly, e.g. --storageEngine=mmapv1., terminating

在命令中添加--storageEngine=mmapv1参数进行解决,即在命令行下输入:

mongod --dbpath C:\data\db --storageEngine=mmapv1

更多Python知识,请关注:!!