Skip to content

Instantly share code, notes, and snippets.

@asiletto
Last active August 29, 2015 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save asiletto/418f8f49b720cac43811 to your computer and use it in GitHub Desktop.
Save asiletto/418f8f49b720cac43811 to your computer and use it in GitHub Desktop.
install & configure mongodb on virtualbox
# install a plain ubuntu with openssh server with 50Gb dynamic drive
#
apt-get update
apt-get dist-upgrade
#
# clone the image
#
# install mongodb on cloned image
apt-get install -y mongodb
#
# tweak config
#
vi /etc/mongodb.conf
>bind_ip = 0.0.0.0
>journal=false
>nojournal=true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment