Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

mongodb install - requirements?

Tags:

mongodb

Anyone know how much disk space and ram a standard ubuntu install on mongo needs? trying to map out my VPS needs ...

like image 407
stickhandle Avatar asked Sep 04 '10 20:09

stickhandle


1 Answers

There are no minimum requirements as such, but I wouldn't recomend running Mongo on the same box as your webserver.

MongoDB automatically uses all free memory on the machine as its cache
(http://docs.mongodb.org/manual/faq/fundamentals/#does-mongodb-require-a-lot-of-ram)

This, along with the reasons mentioned in this answer (albeit for RDBMS) makes running mongodb on a separate box (even a small one) a much better idea.

like image 154
Alex Avatar answered Oct 22 '22 08:10

Alex