我已经在 Ubuntu 14.04 中安装了 MongoDB,但我无法将其存储引擎更改为 WiredTiger。
我已在 /etc/mongod.conf 文件中添加了必要的更改,如下所示:
storage:
dbPath: /var/lib/mongodb
journal:
enabled: true
engine: wiredTiger
我已经使用以下命令启动了 mongod 进程:
mongod -f /etc/mongod.conf
服务器启动了,但是当我连接到我的 shell 时仍然收到警告:
2017-01-10T15:36:54.866+0530 I STORAGE [initandlisten] ** WARNING: Using the XFS filesystem is strongly recommended with the WiredTiger storage engine
我在这里错过了什么吗?这些更改似乎没有效果。