Skip to content

Instantly share code, notes, and snippets.

@ondrek
Created December 3, 2014 11:29
Show Gist options
  • Save ondrek/10c1c4ceb3a4259c3c8b to your computer and use it in GitHub Desktop.
Save ondrek/10c1c4ceb3a4259c3c8b to your computer and use it in GitHub Desktop.
mongo
# run mongodb
mkdir /root/mongodb
export LC_ALL=C
mongod --dbpath /root/mongodb --port 12345
# create a new user
mongo
db.createUser('mongouser','mongopass');
exit
# edit config
nano config/default.yml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment