@@ -18,8 +18,8 @@ mongodb_manage_service: true
18
18
mongodb_disable_transparent_hugepages : false
19
19
20
20
mongodb_user : " {{ 'mongod' if ('RedHat' == ansible_os_family) else 'mongodb' }}"
21
- mongodb_uid :
22
- mongodb_gid :
21
+ mongodb_uid : " "
22
+ mongodb_gid : " "
23
23
mongodb_daemon_name : " {{ 'mongod' if ('mongodb-org' in mongodb_package) else 'mongodb' }}"
24
24
25
25
# # net Options
@@ -29,8 +29,8 @@ mongodb_net_ipv6: false # Enable IPv6 support (disabled
29
29
mongodb_net_maxconns : 65536 # Max number of simultaneous connections
30
30
mongodb_net_port : 27017 # Specify port number
31
31
mongodb_net_ssl : disabled # Enable or disable ssl connections
32
- mongodb_net_ssl_mode : # Set the ssl mode (RequireSSL / preferSSL / AllowSSL / disabled)
33
- mongodb_net_ssl_pemfile : # Location of the pemfile to use for ssl
32
+ mongodb_net_ssl_mode : " " # Set the ssl mode (RequireSSL / preferSSL / AllowSSL / disabled)
33
+ mongodb_net_ssl_pemfile : " " # Location of the pemfile to use for ssl
34
34
35
35
# # processManagement Options
36
36
# Fork server process
@@ -46,8 +46,7 @@ mongodb_security_keyfile: /etc/mongodb-keyfile # Specify path to keyfile with
46
46
mongodb_storage_dbpath : /data/db # Directory for datafiles
47
47
mongodb_storage_dirperdb : false # Use one directory per DB
48
48
49
- # The storage engine for the mongod database. Available values:
50
- # 'mmapv1', 'wiredTiger'
49
+ # The storage engine for the mongod database
51
50
mongodb_storage_engine : " wiredTiger"
52
51
# mmapv1 specific options
53
52
mongodb_storage_quota_enforced : false # Limits each database to a certain number of files
@@ -66,7 +65,7 @@ mongodb_systemlog_logrotate: "rename" # Logro
66
65
mongodb_systemlog_path : /var/log/mongodb/{{ mongodb_daemon_name }}.log # Log file to send write to instead of stdout
67
66
68
67
# # replication Options
69
- mongodb_replication_replset : # Enable replication <setname>[/<optionalseedhostlist>]
68
+ mongodb_replication_replset : " " # Enable replication
70
69
mongodb_replication_replindexprefetch : " all" # specify index prefetching behavior (if secondary) [none|_id_only|all]
71
70
mongodb_replication_oplogsize : 1024 # specifies a maximum size in megabytes for the replication operation log
72
71
0 commit comments