Last active
July 8, 2017 14:26
-
-
Save jayankandathil/d5fca8f881beab73fc0e49bfba50fea6 to your computer and use it in GitHub Desktop.
MongoDB 3.4 configuration on Windows for the WiredTiger storage engine for AEM 6.2 DEV environments
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
net: | |
http: | |
RESTInterfaceEnabled: true | |
enabled: true | |
port: 27017 | |
processManagement: | |
pidFilePath: C:\Programs\MongoDB\Server\3.4\mongod.pid | |
storage: | |
engine: wiredTiger | |
dbPath: C:\Programs\MongoDB\Server\3.4\data | |
directoryPerDB: true | |
journal: | |
enabled: true | |
wiredTiger: | |
engineConfig: | |
cacheSizeGB: 2 | |
journalCompressor: none | |
directoryForIndexes: true | |
collectionConfig: | |
blockCompressor: snappy | |
indexConfig: | |
prefixCompression: true | |
systemLog: | |
destination: file | |
logAppend: true | |
path: C:\Programs\MongoDB\Server\3.4\log\mongodb.log | |
quiet: false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment