Created
November 5, 2012 01:50
-
-
Save imrehg/4014818 to your computer and use it in GitHub Desktop.
MongoDB basic conf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# mongodb.conf | |
# Where to store the data. | |
#dbpath=/var/lib/mongodb | |
#where to log | |
#logpath=/var/log/mongodb/mongodb.log | |
logappend=true | |
#bind_ip = 127.0.0.1 | |
port = 27017 | |
# Enable journaling, http://www.mongodb.org/display/DOCS/Journaling | |
journal=true | |
replSet = rs0 | |
rest = True |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment