Created
February 19, 2015 12:30
-
-
Save tmcallaghan/3591fa29f8d9ce1e0178 to your computer and use it in GitHub Desktop.
YAML Config for MongoDB 3.0.0 - wiredtiger snappy
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
storage: | |
dbPath: "./data" | |
directoryPerDB: true | |
journal: | |
enabled: true | |
engine: "wiredTiger" | |
wiredTiger: | |
engineConfig: | |
cacheSizeGB: 8 | |
journalCompressor: snappy | |
collectionConfig: | |
blockCompressor: snappy | |
indexConfig: | |
prefixCompression: true | |
systemLog: | |
destination: file | |
path: "./mongodb-server.log" | |
logAppend: true | |
timeStampFormat: iso8601-utc | |
processManagement: | |
fork: true | |
net: | |
bindIp: 127.0.0.1 | |
port: 27017 | |
unixDomainSocket: | |
enabled : true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment