diff options
author | Matteo Bernardini <ponce@slackbuilds.org> | 2021-11-21 10:35:46 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-11-22 09:10:21 +0700 |
commit | 93d08acee128b4d9714bc7c911c5fb88938be804 (patch) | |
tree | 466608a8f9dd66d686f61c4cf8aea217694c77d3 /system/mongodb/files/mongodb.conf | |
parent | 8fb7497f26e2bfcaf84fbc37a2f4590237b0f1d3 (diff) |
system/mongodb: Updated for version 5.0.4.
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/mongodb/files/mongodb.conf')
-rw-r--r-- | system/mongodb/files/mongodb.conf | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/system/mongodb/files/mongodb.conf b/system/mongodb/files/mongodb.conf new file mode 100644 index 0000000000000..83b4cc0589adc --- /dev/null +++ b/system/mongodb/files/mongodb.conf @@ -0,0 +1,34 @@ +# !! IMPORTANT !! +# +# This file uses the YAML format as described in the documentation: +# http://docs.mongodb.org/manual/reference/configuration-options/ + +storage: + dbPath: "/var/lib/mongodb" + #engine: wiredTiger + +systemLog: + destination: file + path: "/var/log/mongodb/mongodb.log" + quiet: true + logAppend: true + +net: + port: 27017 + bindIp: 127.0.0.1 + #ssl: + # mode: disabled + +#security: + #keyFile: + #clusterAuthMode: + +#replication: + #replSetName: + +# Specifies one of the MongoDB parameters described here: +# http://docs.mongodb.org/manual/reference/parameters/ +# +# You can specify multiple setParameter fields such as: +# setParameter: {enableTestCommands: 1} +#setParameter: |