0

On my OpenShift server console I executed:

du -hs * | sort -h

and got:

60K cron 128K nodejs 11M redis 12M git 176M app-deployments 180M app-root 481M mongodb

I don't use mongo in the web app. Does it mean that 481M is the initial MongoDB cartridge size ?

Joundill
  • 6,828
  • 12
  • 36
  • 50
Matko
  • 3,386
  • 4
  • 21
  • 35

1 Answers1

0

My initial mongodb directory size is the same, on a newly created Nodejs app with the MongoDB 2.4 cartrdige. Most of that space is used by the ~/mongodb/data/journal/ directory.

You can disable journaling and delete the pre-allocated journal files, to save some space, if needed.

Community
  • 1
  • 1
Jiri Fiala
  • 1,400
  • 7
  • 10