您可以将以下内容添加到运行时提供的配置文件中
mongod --config mongod.conf
对于MongoDB 3.x (最新版本)
storage: mmapv1: smallFiles: true
对于 2.6+* 版本 *
storage: smallFiles: true
对于 2.4 及以下版本
smallfiles = true
然后只需执行mongod接受您的配置文件(此处假定配置位置为 /etc/mongodb.conf ):
mongod -f /etc/mongodb.conf
文档为 smallfiles 参数:
Set to true to modify MongoDB to use a smaller default data file size. Specifically, smallfiles reduces the initial size for data files andlimits them to 512 megabytes. The smallfiles setting also reduces thesize of each journal files from 1 gigabyte to 128 megabytes.
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)