You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
ansible-role-nginx/mongodb/group_vars/all

25 lines
579 B

# The global variable file mongodb installation
# The chunksize for shards in MB
mongos_chunk_size: 1
# The port in which mongos server should listen on
mongos_port: 8888
# The port for mongo config server
mongoc_port: 7777
# The directory prefix where the database files would be stored
mongodb_datadir_prefix: /data/
# The interface where the mongodb process should listen on.
# Defaults to the first interface. Change this to:
#
# iface: eth1
#
# ...to override.
#
iface: '{{ ansible_default_ipv4.interface }}'
# The password for admin user
mongo_admin_pass: 123456