Можете да добавите следното към предоставения конфигурационен файл, когато изпълнявате 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
Документация за малки файлове параметър:
Set to true to modify MongoDB to use a smaller default data file size.
Specifically, smallfiles reduces the initial size for data files and
limits them to 512 megabytes. The smallfiles setting also reduces the
size of each journal files from 1 gigabyte to 128 megabytes.