diff options
author | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2017-12-11 14:41:32 -0500 |
---|---|---|
committer | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2017-12-11 14:41:32 -0500 |
commit | 2ea580cd77382a841c7cd6c8097cfd3d195698f0 (patch) | |
tree | 19f937384b2bb0ae0157ae42b41b1db8760237c9 /buildscripts/packaging/msi/mongod.yaml | |
parent | 06b3488461d820c9081e5d7fca0fc028470922ea (diff) | |
download | mongo-2ea580cd77382a841c7cd6c8097cfd3d195698f0.tar.gz |
SERVER-14263 Install MongoDB as service on Windows
Diffstat (limited to 'buildscripts/packaging/msi/mongod.yaml')
-rw-r--r-- | buildscripts/packaging/msi/mongod.yaml | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/buildscripts/packaging/msi/mongod.yaml b/buildscripts/packaging/msi/mongod.yaml new file mode 100644 index 00000000000..ddfc798e4b4 --- /dev/null +++ b/buildscripts/packaging/msi/mongod.yaml @@ -0,0 +1,41 @@ +# mongod.conf + +# for documentation of all options, see: +# http://docs.mongodb.org/manual/reference/configuration-options/ + +# Where and how to store data. +storage: + dbPath: %MONGO_DATA_PATH% + journal: + enabled: true +# engine: +# mmapv1: +# wiredTiger: + +# where to write logging data. +systemLog: + destination: file + logAppend: true + path: %MONGO_LOG_PATH%\mongod.log + +# network interfaces +net: + port: 27017 + bindIp: 127.0.0.1 + + +#processManagement: + +#security: + +#operationProfiling: + +#replication: + +#sharding: + +## Enterprise-Only Options: + +#auditLog: + +#snmp: |